| /third_party/python/Tools/c-analyzer/cpython/ |
| H A D | _capi.py | 181 class CAPIItem(namedtuple('CAPIItem', 'file lno name kind level')): 202 return self.file[len(REPO_ROOT) + 1:] 366 logger.error(f'ignore file failed: {exc}') 422 os.path.dirname(item.file), 423 os.path.basename(item.file),
|
| /third_party/python/Lib/idlelib/ |
| H A D | query.py | 10 Subclass SectionName gets a name for a new config file section. 164 "Get a name for a config file section name." 197 "Return entered module name as file path or None." 202 # XXX Ought to insert current file's directory in front of path. 251 """Get menu entry and url/local file for Additional Help. 253 User enters a name for the Help resource and a web url or file 254 name. The user can browse for the file. 266 text='Help File Path: Enter URL or browse for file') 285 # Test by running htest, such as by running this file. 307 file [all...] |
| /third_party/python/Lib/ |
| H A D | socketserver.py | 82 data is stored externally (e.g. in the file system), a synchronous 145 # poll/select have the advantage of not requiring any extra file descriptor, 225 # XXX: Consider using another file descriptor or connecting to the 377 print('-'*40, file=sys.stderr) 379 client_address, file=sys.stderr) 382 print('-'*40, file=sys.stderr) 492 """Return socket file number. 772 # - rfile: a file object from which receives the request is read 773 # - wfile: a file object to which the reply is written
|
| H A D | webbrowser.py | 612 # file for this operation: '<URL>' 643 url = 'file:'+url 718 print(msg, file=sys.stderr) 719 print(usage, file=sys.stderr) 726 print(usage, file=sys.stderr)
|
| /third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
| H A D | es31cFramebufferNoAttachmentsTests.cpp | 8 * you may not use this file except in compliance with the License. 20 * \file 40 void checkErrorEqualsExpected(GLenum err, GLenum expected, const char* msg, const char* file, int line) in checkErrorEqualsExpected() argument 51 throw glu::OutOfMemoryError(msgStr.str().c_str(), "", file, line); in checkErrorEqualsExpected() 53 throw glu::Error(err, msgStr.str().c_str(), "", file, line); in checkErrorEqualsExpected()
|
| /third_party/vk-gl-cts/external/ |
| H A D | fetch_sources.py | 10 # you may not use this file except in compliance with the License. 200 file = os.path.join(EXTERNAL_DIR, pkg.baseDir, pkg.extractDir, pkg.filename) 201 if os.path.exists(file): 202 data = readFile(file)
|
| /third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
| H A D | Print.hpp | 4 // you may not use this file except in compliance with the License. 344 // Printv emits a call to printf() using the function, file and line, 347 void Printv(const char *function, const char *file, int line, const char *msg, std::initializer_list<PrintValue> vals); 375 void Print(const char *function, const char *file, int line, const char *msg, const ARGS &...vals) in Print() argument 377 Printv(function, file, line, msg, { vals... }); in Print() 381 // function, file and line parameters and appending a newline to the string.
|
| /third_party/openssl/include/openssl/ |
| H A D | ts.h | 5 * this file except in compliance with the License. You can obtain a copy 6 * in the file LICENSE in the source distribution or at 465 X509 *TS_CONF_load_cert(const char *file); 466 STACK_OF(X509) *TS_CONF_load_certs(const char *file); 467 EVP_PKEY *TS_CONF_load_key(const char *file, const char *pass);
|
| /third_party/python/Lib/test/ |
| H A D | test_mimetypes.py | 72 # Unreadable file returns None 77 file = pathlib.Path(directory, "sample.mimetype") 78 file.write_text(data, encoding="utf-8") 79 mime_dict = mimetypes.read_mime_types(file) 82 # bpo-41048: read_mime_types should read the rule file with 'utf-8' encoding. 259 # Use file types that should *always* exist:
|
| /third_party/python/Modules/ |
| H A D | _gdbmmodule.c | 43 provide some additional functionality. Please note that the file formats\n\ 76 newgdbmobject(_gdbm_state *state, const char *file, int flags, int mode) in newgdbmobject() argument 86 if ((dp->di_dbm = gdbm_open((char *)file, 0, flags, mode, NULL)) == 0) { in newgdbmobject() 88 PyErr_SetFromErrnoWithFilename(state->gdbm_error, file); in newgdbmobject() 491 the space used by the GDBM file, this routine will reorganize the 492 database. GDBM will not shorten the length of a database file except 493 by using this reorganization; otherwise, deleted file space will be 520 Flush the database to the disk file. 582 // So calling PyType_GetModuleState() in this file is always safe. 600 The filename argument is the name of the database file [all...] |
| H A D | _dbmmodule.c | 72 newdbmobject(_dbm_state *state, const char *file, int flags, int mode) in newdbmobject() argument 83 if ( (dp->di_dbm = dbm_open((char *)file, flags, mode)) == 0 ) { in newdbmobject() 84 PyErr_SetFromErrnoWithFilename(state->dbm_error, file); in newdbmobject() 181 /* we might get a failure for reasons like file corrupted, in dbm_ass_sub() 429 // So calling PyType_GetModuleState() in this file is always safe. 445 How to open the file. "r" for reading, "w" for writing, etc. 448 If creating a new file, the mode bits for the new file
|
| /third_party/skia/tools/viewer/ |
| H A D | ParticlesSlide.cpp | 5 * found in the LICENSE file. 217 for (SkString file; iter.next(&file); ) { in loadEffects() 219 effect.fName = SkOSPath::Join(dirname, file.c_str()); in loadEffects()
|
| /third_party/skia/third_party/externals/icu/source/common/ |
| H A D | brkiter.cpp | 20 // This file was generated from the java source file BreakIterator.java 81 // Get the string object naming the rules file in buildInstance() 111 UDataMemory* file = udata_open(U_ICUDATA_BRKITR, ext, fnbuff, &status); in buildInstance() local 118 result = new RuleBasedBreakIterator(file, status); in buildInstance() 135 udata_close(file); in buildInstance()
|
| /third_party/skia/third_party/externals/icu/source/data/ |
| H A D | BUILDRULES.py | 20 print("Error: Cannot find data directory; please specify --src_dir", file=sys.stderr) 40 # (input dirname, output dirname, resfiles.mk path, mk version var, mk source var, use pool file, dep files) 169 "INPUT_FILE_PLACEHOLDER": utils.SpaceSeparatedList(file.filename for file in input_files) 293 # both in the .jar and in the .dat file (if ICU4J uses the .dat file). 535 # Generate res_index file 538 # (for example, we do not want to read from an XML file).
|
| /third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/ |
| H A D | declarationMap-and-sourceMap-disabled.js | 137 [[90m12:00:11 AM[0m] Project 'src/first/tsconfig.json' is out of date because output file 'src/first/bin/first-output.tsbuildinfo' does not exist
141 [[90m12:00:22 AM[0m] Project 'src/second/tsconfig.json' is out of date because output file 'src/2/second-output.tsbuildinfo' does not exist
145 [[90m12:00:33 AM[0m] Project 'src/third/tsconfig.json' is out of date because output file 'src/third/thirdjs/output/third-output.js' does not exist
163 {"version":3,"file":"second-output.d.ts","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"AAAA,kBAAU,CAAC,CAAC;CAEX;AAED,kBAAU,CAAC,CAAC;CAMX;ACVD,cAAM,CAAC;IACH,WAAW;CAGd"}
281 {"version":3,"file":"second-output.js","sourceRoot":"","sources":["../second/second_part1.ts","../second/second_part2.ts"],"names":[],"mappings":"AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;ACVD;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC"}
538 {"bundle":{"commonSourceDirectory":"../second","sourceFiles":["../second/second_part1.ts","../second/second_part2.ts"],"js":{"sections":[{"pos":0,"end":285,"kind":"text"}],"mapHash":"9890117190-{\"version\":3,\"file\":\"second-output.js\",\"sourceRoot\":\"\",\"sources\":[\"../second/second_part1.ts\",\"../second/second_part2.ts\"],\"names\":[],\"mappings\":\"AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;ACVD;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC\"}","hash":"-23059753096-var N;\r\n(function (N) {\r\n function f() {\r\n console.log('testing');\r\n }\r\n f();\r\n})(N || (N = {}));\r\nvar C = (function () {\r\n function C() {\r\n }\r\n C.prototype.doSomething = function () {\r\n console.log(\"something got done\");\r\n };\r\n return C;\r\n}());\r\n//# sourceMappingURL=second-output.js.map"},"dts":{"sections":[{"pos":0,"end":100,"kind":"text"}],"mapHash":"7640041563-{\"version\":3,\"file\":\"second-output.d.ts\",\"sourceRoot\":\"\",\"sources\":[\"../second/second_part1.ts\",\"../second/second_part2.ts\"],\"names\":[],\"mappings\":\"AAAA,kBAAU,CAAC,CAAC;CAEX;AAED,kBAAU,CAAC,CAAC;CAMX;ACVD,cAAM,CAAC;IACH,WAAW;CAGd\"}","hash":"7752788385-declare namespace N {\r\n}\r\ndeclare namespace N {\r\n}\r\ndeclare class C {\r\n doSomething(): void;\r\n}\r\n//# sourceMappingURL=second-output.d.ts.map"}},"program":{"fileNames":["../second/second_part1.ts","../second/second_part2.ts"],"fileInfos":["-21603042336-namespace N {\r\n // Comment text\r\n}\r\n\r\nnamespace N {\r\n function f() {\r\n console.log('testing');\r\n }\r\n\r\n f();\r\n}\r\n","9339262372-class C {\r\n doSomething() {\r\n console.log(\"something got done\");\r\n }\r\n}\r\n"],"options":{"composite":true,"outFile":"./second-output.js"},"outSignature":"7003440774-declare namespace N {\r\n}\r\ndeclare namespace N {\r\n}\r\ndeclare class C {\r\n doSomething(): void;\r\n}\r\n","latestChangedDtsFile":"./second-output.d.ts"},"version":"FakeTSVersion"}
593 "mapHash": "9890117190-{\"version\":3,\"file\":\"second-output.js\",\"sourceRoot\":\"\",\"sources\":[\"../second/second_part1.ts\",\"../second/second_part2.ts\"],\"names\":[],\"mappings\":\"AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;ACVD;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC\"}" 604 "mapHash": "7640041563-{\"version\":3,\"file\":\"second-output.d.ts\",\"sourceRoot\":\"\",\"sources\":[\"../second/second_part1.ts\",\"../second/second_part2.ts\"],\"names\":[],\"mappings\":\"AAAA,kBAAU,CAAC,CAAC;CAEX;AAED,kBAAU,CAAC,CAAC;CAMX;ACVD,cAAM,CAAC;IACH,WAAW;CAGd\"}" 639 {"version":3,"file" [all...] |
| /third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/ |
| H A D | when-referenced-using-prepend-builds-referencing-project-even-for-non-local-change.js | 33 [[90m12:00:52 AM[0m] Found 0 errors. Watching for file changes. 397 [[90m12:01:29 AM[0m] Found 0 errors. Watching for file changes. 676 [[90m12:02:00 AM[0m] Found 0 errors. Watching for file changes.
|
| /third_party/toybox/toys/pending/ |
| H A D | modprobe.c | 56 static char *path2mod(char *file, char *mod) in path2mod() argument 61 if (!file) return NULL; in path2mod() 64 from = getbasename(file); in path2mod() 158 * Read a line from file with \ continuation and skip commented lines. 217 if (!S_ISREG(node->st.st_mode)) return 0; // process only regular file in config_action() 272 error_msg("Invalid option %s found in file %s", tokens[0], filename); in config_action() 306 // Finds dependencies for modules from the modules.dep file.
|
| /third_party/protobuf/src/google/protobuf/compiler/java/ |
| H A D | java_message_lite.cc | 73 GOOGLE_CHECK(!HasDescriptorMethods(descriptor->file(), context->EnforceLite())) in ImmutableMessageLiteGenerator() 444 if (IsWrappersProtoFile(descriptor_->file())) { in Generate() 477 if (IsProto2(descriptor_->file())) { in GenerateDynamicMethodNewBuildMessageInfo()
|
| /third_party/protobuf/src/google/protobuf/ |
| H A D | field_mask.pb.h | 12 #error This file was generated by a newer version of protoc which is 17 #error This file was generated by an older version of protoc which is 19 #error regenerate this file with a newer version of protoc.
|
| H A D | any.pb.h | 12 #error This file was generated by a newer version of protoc which is 17 #error This file was generated by an older version of protoc which is 19 #error regenerate this file with a newer version of protoc.
|
| /third_party/python/Lib/distutils/tests/ |
| H A D | test_dist.py | 107 "root = {0}").format(fakepath), file=f) 150 print("[global]", file=f) 151 print("command_packages = foo.bar, splat", file=f) 166 # be used even if a config file specified something else: 229 # Ticket #1180: Allow user to disable their home config file. 253 # make sure --no-user-cfg disables the user cfg file
|
| /third_party/rust/crates/clap/tests/builder/ |
| H A D | opts.rs | 16 .try_get_matches_from(vec!["prog", "--config", "file.conf"]); in require_equals_fail() 36 utils::assert_output(cmd, "prog --config file.conf", NO_EQUALS, true); in require_equals_fail_message() 85 .try_get_matches_from(vec!["prog", "--config=", "file.conf"]); in require_equals_no_empty_values_fail() 112 .try_get_matches_from(vec!["prog", "--config=file.conf"]); in require_equals_pass() 295 .arg(arg!([file] "some file")) in multiple_vals_pos_arg_equals() 301 assert!(m.contains_id("file")); in multiple_vals_pos_arg_equals() 303 m.get_one::<String>("file").map(|v| v.as_str()).unwrap(), in multiple_vals_pos_arg_equals() 312 .arg(arg!([file] "some file")) in require_delims_no_delim() [all...] |
| /third_party/vk-gl-cts/scripts/ |
| H A D | run_nightly.py | 10 # you may not use this file except in compliance with the License. 142 for file in os.listdir(logsDir): 143 fullPath = os.path.join(logsDir, file) 144 if os.path.isfile(fullPath) and fnmatch.fnmatch(file, "*.csv"):
|
| /third_party/vulkan-loader/scripts/ |
| H A D | update_deps.py | 9 # you may not use this file except in compliance with the License. 38 This program expects to find a file named "known-good.json" in the 39 same directory as the program file. This JSON file is tailored for 56 is not tracked by Git. (See the .gitignore file.) The "external" directory 73 JSON file configures the build and install working directories to be 87 When the program finishes building the dependencies, it writes a file 90 This helper file can be used to set up the CMake build files for this 106 There's no formal schema for the "known-good" JSON file, but here is 108 marked as optional. Please see the "known_good.json" file fo [all...] |
| /third_party/typescript/lib/ |
| H A D | typingsInstaller.js | 4 this file except in compliance with the License. You may obtain a copy of the 1731 // We convert the file names to lower case as key for file name on case insensitive file system 1755 * Case insensitive file systems have descripencies in how they handle some characters (eg. turkish Upper case I with dot on top - \u0130) 1756 * This function is used in places where we want to make file name as a key on these systems 1757 * It is possible on mac to be able to refer to file name with I with dot on top as a fileName with its lower case form 3920 // now that the file won't be created. 4003 var file = ts.getSourceFileOfNode(node); 4004 return !file [all...] |