Home
last modified time | relevance | path

Searched refs:file (Results 2776 - 2800 of 7660) sorted by relevance

1...<<111112113114115116117118119120>>...307

/third_party/lzma/C/Util/SfxSetup/
H A DSfxSetup.c380 if (InFile_OpenW(&archiveStream.file, sfxPath) != 0) in main()
382 errorMessage = "can not open input file"; in main()
388 if (!FindSignature(&archiveStream.file, &pos)) in main()
390 else if (File_Seek(&archiveStream.file, (Int64 *)&pos, SZ_SEEK_SET) != 0) in main()
488 errorMessage = "Duplicate file"; in main()
494 errorMessage = "Can't open output file"; in main()
503 errorMessage = "Can't write output file"; in main()
539 errorMessage = "There is no file to execute"; in main()
559 File_Close(&archiveStream.file); in main()
/third_party/jerryscript/jerry-main/
H A Dmain-unix-snapshot.c4 * you may not use this file except in compliance with the License.
132 * Loading a single file into the memory.
134 * @return size of file - if loading is successful
139 const char *file_name) /**< file name */ in read_file()
141 FILE *file = fopen (file_name, "rb"); in read_file() local
143 if (file == NULL) in read_file()
145 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to open file: %s\n", file_name); in read_file()
151 size_t bytes_read = fread (input_pos_p, 1u, max_size, file); in read_file()
152 fclose (file); in read_file()
156 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to read file in read_file()
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_reg_type.c324 enum brw_reg_file file, in brw_reg_type_to_hw_type()
352 if (file == BRW_IMMEDIATE_VALUE) { in brw_reg_type_to_hw_type()
368 enum brw_reg_file file, unsigned hw_type) in brw_hw_type_to_reg_type()
388 if (file == BRW_IMMEDIATE_VALUE) { in brw_hw_type_to_reg_type()
323 brw_reg_type_to_hw_type(const struct intel_device_info *devinfo, enum brw_reg_file file, enum brw_reg_type type) brw_reg_type_to_hw_type() argument
367 brw_hw_type_to_reg_type(const struct intel_device_info *devinfo, enum brw_reg_file file, unsigned hw_type) brw_hw_type_to_reg_type() argument
/third_party/node/deps/npm/node_modules/normalize-package-data/lib/
H A Dfixer.js78 data.files = data.files.filter(function (file) {
79 if (!file || typeof file !== 'string') {
80 this.warn('invalidFilename', file)
/third_party/libinput/tools/
H A Dlibinput-measure-touch-size.py35 print("Error: {}".format(str(e)), file=sys.stderr)
224 print("Unable to find a touch device.", file=sys.stderr)
233 file=sys.stderr,
264 file=sys.stderr,
/third_party/ltp/tools/sparse/sparse-src/
H A Dscheck.c348 char *file; in main() local
358 FOR_EACH_PTR(filelist, file) { in main()
359 check_functions(sparse(file)); in main()
360 } END_FOR_EACH_PTR(file); in main()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_measure.c24 * @file iris_measure.c
90 if (measure_device->config->file && in iris_destroy_screen_measure()
91 measure_device->config->file != stderr) in iris_destroy_screen_measure()
92 fclose(screen->measure.config->file); in iris_destroy_screen_measure()
166 fprintf(config->file, in measure_start_snapshot()
/third_party/mesa3d/src/gallium/tools/trace/
H A Dpytracediff.py58 print(f"ERROR: {msg}", file=sys.stderr)
65 print(msg, file=sys.stderr)
70 print(msg, file=outpipe.stdin)
106 print(f"\nERROR: {msg}", file=sys.stderr)
/third_party/openssl/test/
H A Dct_test.c5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
50 * A file to load the expected SCT text from.
52 * A maximum of |CT_TEST_MAX_FILE_SIZE| bytes will be read of this file.
91 static X509 *load_pem_cert(const char *dir, const char *file) in load_pem_cert() argument
94 char *file_path = test_mk_file_path(dir, file); in load_pem_cert()
108 static int read_text_file(const char *dir, const char *file, in read_text_file() argument
112 char *file_path = test_mk_file_path(dir, file); in read_text_file()
/third_party/python/Lib/test/support/
H A Dos_helper.py27 # In Mac OS X's VFS API file names are, by definition, canonically
126 # accepts it to create a file or a directory, or don't accept to enter to
156 Create an invalid file descriptor by opening and closing a file and return
159 file = open(TESTFN, "wb")
161 return file.fileno()
163 file.close()
214 # TESTFN & tempfile may use different file systems with
269 WASI SDK 15.0 cannot change file mode bits.
278 # bypass file rea
[all...]
/third_party/python/Lib/
H A Dsite.py16 If a file named "pyvenv.cfg" exists one directory above sys.executable,
20 installation). If "pyvenv.cfg" (a bootstrap configuration file) contains
29 A path configuration file is a file whose name has the form
59 omitted because it is not mentioned in either path configuration file.
93 print(message, file=sys.stderr)
136 # Filter out duplicate paths (on case-insensitive file systems also
148 """Return a set containing all existing file system items from sys.path."""
161 """Process a .pth file within the site-packages directory:
162 For each line in the file, eithe
[all...]
/third_party/skia/tests/
H A DFontMgrAndroidParserTest.cpp5 * found in the LICENSE file.
65 // All file names in the test configuration files start with a capital letter. in ValidateLoadedFonts()
71 FontFileInfo& file = family.fFonts[j]; in ValidateLoadedFonts() local
72 REPORTER_ASSERT(reporter, !file.fFileName.isEmpty() && in ValidateLoadedFonts()
73 file.fFileName[0] >= 'A' && in ValidateLoadedFonts()
74 file.fFileName[0] <= 'Z'); in ValidateLoadedFonts()
82 SkDebugf(" file (%d) %s#%d", ffi.fWeight, ffi.fFileName.c_str(), ffi.fIndex); in DumpFiles()
245 ERRORF(reporter, "file missing: %s\n", fontsXmlFilename); in DEF_TEST()
280 ERRORF(reporter, "file missing: %s\n", fontsXmlFilename); in DEF_TEST()
357 ERRORF(reporter, "file missin in DEF_TEST()
[all...]
/third_party/python/Lib/test/
H A Dtest_dbm_dumb.py140 # Mangle the file by changing the line separator to Windows or Unix
141 with io.open(_fname + '.dir', 'rb') as file:
142 data = file.read()
147 with io.open(_fname + '.dir', 'wb') as file:
148 file.write(data)
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/
H A Dwith-noEmitOnError-with-incremental.js52 [12:00:37 AM] Found 1 error. Watching for file changes.
179 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
220 [12:01:04 AM] Found 0 errors. Watching for file changes.
356 [12:01:15 AM] Found 1 error. Watching for file changes.
398 {"program":{"fileNames":["../../../../../a/lib/lib.d.ts","../shared/types/db.ts","../src/main.ts","../src/other.ts"],"fileInfos":[{"version":"3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-9621097780-export interface A {\r\n name: string;\r\n}",{"version":"-11111345725-import { A } from \"../shared/types/db\";\nconst a: string = 10;","signature":"-3531856636-export {};\n"},"11373096570-console.log(\"hi\");\r\nexport { }"],"options":{"assumeChangesOnlyAffectDirectDependencies":true,"noEmitOnError":true,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,[3,[{"file":"../src/main.ts","start":46,"length":1,"code":2322,"category":1,"messageText":"Type 'number' is not assignable to type 'string'."}]],4],"affectedFilesPendingEmit":[[3,1]]},"version":"FakeTSVersion"}
451 "file": "../src/main.ts",
477 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
516 [12:01:33 AM] Found 0 errors. Watching for file changes.
625 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
H A Dwith-noEmitOnError.js52 [12:00:32 AM] Found 1 error. Watching for file changes.
103 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
144 [12:00:56 AM] Found 0 errors. Watching for file changes.
222 [12:01:01 AM] Found 1 error. Watching for file changes.
267 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
306 [12:01:13 AM] Found 0 errors. Watching for file changes.
357 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/
H A Dwith-noEmitOnError-with-incremental.js52 [12:00:37 AM] Found 1 error. Watching for file changes.
180 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
221 [12:01:10 AM] Found 0 errors. Watching for file changes.
372 [12:01:21 AM] Found 1 error. Watching for file changes.
414 {"program":{"fileNames":["../../../../../a/lib/lib.d.ts","../shared/types/db.ts","../src/main.ts","../src/other.ts"],"fileInfos":[{"version":"3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-9621097780-export interface A {\r\n name: string;\r\n}","signature":"-5014788164-export interface A {\n name: string;\n}\n"},{"version":"-11111345725-import { A } from \"../shared/types/db\";\nconst a: string = 10;","signature":"-3531856636-export {};\n"},{"version":"11373096570-console.log(\"hi\");\r\nexport { }","signature":"-3531856636-export {};\n"}],"options":{"assumeChangesOnlyAffectDirectDependencies":true,"declaration":true,"noEmitOnError":true,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,[3,[{"file":"../src/main.ts","start":46,"length":1,"code":2322,"category":1,"messageText":"Type 'number' is not assignable to type 'string'."}]],4],"affectedFilesPendingEmit":[[3,1]]},"version":"FakeTSVersion"}
468 "file": "../src/main.ts",
494 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
533 [12:01:42 AM] Found 0 errors. Watching for file changes.
639 //// [/user/username/projects/noEmitOnError/dev-build/src/main.d.ts] file written with same contents
644 //// [/user/username/projects/noEmitOnError/src/main.ts] file writte
[all...]
H A Dwith-noEmitOnError.js52 [12:00:32 AM] Found 1 error. Watching for file changes.
103 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
144 [12:01:02 AM] Found 0 errors. Watching for file changes.
236 [12:01:07 AM] Found 1 error. Watching for file changes.
281 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
320 [12:01:22 AM] Found 0 errors. Watching for file changes.
367 //// [/user/username/projects/noEmitOnError/dev-build/src/main.d.ts] file written with same contents
372 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/
H A Dwith-noEmitOnError-with-incremental.js52 [12:00:37 AM] Found 1 error. Watching for file changes.
178 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
219 [12:01:04 AM] Found 0 errors. Watching for file changes.
354 [12:01:15 AM] Found 1 error. Watching for file changes.
396 {"program":{"fileNames":["../../../../../a/lib/lib.d.ts","../shared/types/db.ts","../src/main.ts","../src/other.ts"],"fileInfos":[{"version":"3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-9621097780-export interface A {\r\n name: string;\r\n}",{"version":"-11111345725-import { A } from \"../shared/types/db\";\nconst a: string = 10;","signature":"-3531856636-export {};\n"},"11373096570-console.log(\"hi\");\r\nexport { }"],"options":{"noEmitOnError":true,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,[3,[{"file":"../src/main.ts","start":46,"length":1,"code":2322,"category":1,"messageText":"Type 'number' is not assignable to type 'string'."}]],4],"affectedFilesPendingEmit":[[3,1]]},"version":"FakeTSVersion"}
448 "file": "../src/main.ts",
474 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
513 [12:01:33 AM] Found 0 errors. Watching for file changes.
621 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
H A Dwith-noEmitOnError.js52 [12:00:32 AM] Found 1 error. Watching for file changes.
103 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
144 [12:00:56 AM] Found 0 errors. Watching for file changes.
222 [12:01:01 AM] Found 1 error. Watching for file changes.
267 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
306 [12:01:13 AM] Found 0 errors. Watching for file changes.
357 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/
H A Dwith-noEmitOnError-with-incremental.js52 [12:00:37 AM] Found 1 error. Watching for file changes.
179 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
220 [12:01:10 AM] Found 0 errors. Watching for file changes.
370 [12:01:21 AM] Found 1 error. Watching for file changes.
412 {"program":{"fileNames":["../../../../../a/lib/lib.d.ts","../shared/types/db.ts","../src/main.ts","../src/other.ts"],"fileInfos":[{"version":"3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-9621097780-export interface A {\r\n name: string;\r\n}","signature":"-5014788164-export interface A {\n name: string;\n}\n"},{"version":"-11111345725-import { A } from \"../shared/types/db\";\nconst a: string = 10;","signature":"-3531856636-export {};\n"},{"version":"11373096570-console.log(\"hi\");\r\nexport { }","signature":"-3531856636-export {};\n"}],"options":{"declaration":true,"noEmitOnError":true,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,[3,[{"file":"../src/main.ts","start":46,"length":1,"code":2322,"category":1,"messageText":"Type 'number' is not assignable to type 'string'."}]],4],"affectedFilesPendingEmit":[[3,1]]},"version":"FakeTSVersion"}
465 "file": "../src/main.ts",
491 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
530 [12:01:42 AM] Found 0 errors. Watching for file changes.
635 //// [/user/username/projects/noEmitOnError/dev-build/src/main.d.ts] file written with same contents
640 //// [/user/username/projects/noEmitOnError/src/main.ts] file writte
[all...]
H A Dwith-noEmitOnError.js52 [12:00:32 AM] Found 1 error. Watching for file changes.
103 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
144 [12:01:02 AM] Found 0 errors. Watching for file changes.
236 [12:01:07 AM] Found 1 error. Watching for file changes.
281 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
320 [12:01:22 AM] Found 0 errors. Watching for file changes.
367 //// [/user/username/projects/noEmitOnError/dev-build/src/main.d.ts] file written with same contents
372 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/
H A Dwith-noEmitOnError-with-incremental.js52 [12:00:37 AM] Found 1 error. Watching for file changes.
178 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
219 [12:01:04 AM] Found 0 errors. Watching for file changes.
354 [12:01:15 AM] Found 1 error. Watching for file changes.
396 {"program":{"fileNames":["../../../../../a/lib/lib.d.ts","../shared/types/db.ts","../src/main.ts","../src/other.ts"],"fileInfos":[{"version":"3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-9621097780-export interface A {\r\n name: string;\r\n}",{"version":"-11111345725-import { A } from \"../shared/types/db\";\nconst a: string = 10;","signature":"-3531856636-export {};\n"},"11373096570-console.log(\"hi\");\r\nexport { }"],"options":{"noEmitOnError":true,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,[3,[{"file":"../src/main.ts","start":46,"length":1,"code":2322,"category":1,"messageText":"Type 'number' is not assignable to type 'string'."}]],4],"affectedFilesPendingEmit":[[3,1]]},"version":"FakeTSVersion"}
448 "file": "../src/main.ts",
474 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
513 [12:01:33 AM] Found 0 errors. Watching for file changes.
621 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
H A Dwith-noEmitOnError.js52 [12:00:32 AM] Found 1 error. Watching for file changes.
103 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
144 [12:00:56 AM] Found 0 errors. Watching for file changes.
222 [12:01:01 AM] Found 1 error. Watching for file changes.
267 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
306 [12:01:13 AM] Found 0 errors. Watching for file changes.
357 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/
H A Dwith-noEmitOnError-with-incremental.js52 [12:00:37 AM] Found 1 error. Watching for file changes.
179 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
220 [12:01:10 AM] Found 0 errors. Watching for file changes.
370 [12:01:21 AM] Found 1 error. Watching for file changes.
412 {"program":{"fileNames":["../../../../../a/lib/lib.d.ts","../shared/types/db.ts","../src/main.ts","../src/other.ts"],"fileInfos":[{"version":"3858781397-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-9621097780-export interface A {\r\n name: string;\r\n}","signature":"-5014788164-export interface A {\n name: string;\n}\n"},{"version":"-11111345725-import { A } from \"../shared/types/db\";\nconst a: string = 10;","signature":"-3531856636-export {};\n"},{"version":"11373096570-console.log(\"hi\");\r\nexport { }","signature":"-3531856636-export {};\n"}],"options":{"declaration":true,"noEmitOnError":true,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,2,[3,[{"file":"../src/main.ts","start":46,"length":1,"code":2322,"category":1,"messageText":"Type 'number' is not assignable to type 'string'."}]],4],"affectedFilesPendingEmit":[[3,1]]},"version":"FakeTSVersion"}
465 "file": "../src/main.ts",
491 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
530 [12:01:42 AM] Found 0 errors. Watching for file changes.
635 //// [/user/username/projects/noEmitOnError/dev-build/src/main.d.ts] file written with same contents
640 //// [/user/username/projects/noEmitOnError/src/main.ts] file writte
[all...]
H A Dwith-noEmitOnError.js52 [12:00:32 AM] Found 1 error. Watching for file changes.
103 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
144 [12:01:02 AM] Found 0 errors. Watching for file changes.
236 [12:01:07 AM] Found 1 error. Watching for file changes.
281 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
320 [12:01:22 AM] Found 0 errors. Watching for file changes.
367 //// [/user/username/projects/noEmitOnError/dev-build/src/main.d.ts] file written with same contents
372 //// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents

Completed in 18 milliseconds

1...<<111112113114115116117118119120>>...307