/third_party/skia/buildtools/checkdeps/ |
D | cpp_checker.py | 57 include_path = found_item.group(1) 59 if '\\' in include_path: 61 include_path, 65 if '/' not in include_path: 69 print(' WARNING: include specified with no directory: ' + include_path) 72 if self._resolve_dotdot and '../' in include_path: 74 include_path = os.path.join(dependee_dir, include_path) 75 include_path = os.path.relpath(include_path, self._root_dir) 77 rule = rules.RuleApplyingTo(include_path, dependee_path) 80 return True, results.DependencyViolation(include_path, rule, rules)
|
D | results.py | 15 def __init__(self, include_path, violated_rule, rules): argument 17 self.include_path = include_path 91 (violation.include_path, str(violation.violated_rule))) 117 'include_path': violation.include_path, 150 self.violations.add(violation.include_path)
|
D | rules.py | 173 def RuleApplyingTo(self, include_path, dependee_path): argument 181 if rule.ChildOrMatch(include_path): 184 if rule.ChildOrMatch(include_path):
|
/third_party/mbedtls/tests/scripts/ |
D | test_psa_constant_names.py | 53 include_path: Optional[str] = None, 68 include_path=include_path, 98 include_path: Optional[str] = None, 110 include_path=include_path, keep_c=keep_c) 132 include_path=self.options.include,
|
/third_party/node/tools/ |
D | getsharedopensslhasquic.py | 5 def get_has_quic(include_path): argument 6 if include_path: 8 include_path,
|
/third_party/node/deps/openssl/openssl/crypto/conf/ |
D | conf_def.c | 446 char *include_path = NULL; in def_load_bio() local 476 include_path = OPENSSL_malloc(newlen); in def_load_bio() 477 if (include_path == NULL) { in def_load_bio() 483 OPENSSL_strlcpy(include_path, include_dir, newlen); in def_load_bio() 484 if (!ossl_ends_with_dirsep(include_path)) in def_load_bio() 485 OPENSSL_strlcat(include_path, "/", newlen); in def_load_bio() 486 OPENSSL_strlcat(include_path, include, newlen); in def_load_bio() 489 include_path = include; in def_load_bio() 493 && !ossl_is_absolute_path(include_path)) { in def_load_bio() 495 OPENSSL_free(include_path); in def_load_bio() [all …]
|
/third_party/openssl/crypto/conf/ |
D | conf_def.c | 446 char *include_path = NULL; in def_load_bio() local 476 include_path = OPENSSL_malloc(newlen); in def_load_bio() 477 if (include_path == NULL) { in def_load_bio() 483 OPENSSL_strlcpy(include_path, include_dir, newlen); in def_load_bio() 484 if (!ossl_ends_with_dirsep(include_path)) in def_load_bio() 485 OPENSSL_strlcat(include_path, "/", newlen); in def_load_bio() 486 OPENSSL_strlcat(include_path, include, newlen); in def_load_bio() 489 include_path = include; in def_load_bio() 493 && !ossl_is_absolute_path(include_path)) { in def_load_bio() 495 OPENSSL_free(include_path); in def_load_bio() [all …]
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
D | c_build_helper.py | 127 header='', include_path=None, argument 148 if include_path is None: 149 include_path = [] 163 compile_c_file(c_name, exe_name, include_path)
|
D | psa_storage.py | 60 include_path=['include']) #type: List[str]
|
/third_party/protobuf/benchmarks/php/ |
D | autoload.php | 9 function protobuf_autoloader_impl($class, $prefix, $include_path) { argument 12 … $path = $include_path . '/' . implode('/', array_map('ucwords', explode('\\', $class))) . '.php';
|
/third_party/cJSON/tests/unity/auto/ |
D | generate_test_runner.rb | 149 includes.each do |include_path| 150 include_file = File.basename(include_path) 151 mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}/i
|
/third_party/node/deps/v8/src/torque/ |
D | global-context.h | 39 static void AddCppInclude(std::string include_path) { in AddCppInclude() argument 40 Get().cpp_includes_.insert(std::move(include_path)); in AddCppInclude()
|
D | ast.h | 1245 CppIncludeDeclaration(SourcePosition pos, std::string include_path) in CppIncludeDeclaration() 1246 : Declaration(kKind, pos), include_path(std::move(include_path)) {} in CppIncludeDeclaration() 1247 std::string include_path; member
|
D | declaration-visitor.cc | 293 GlobalContext::AddCppInclude(decl->include_path); in Visit()
|
D | implementation-visitor.cc | 92 for (const std::string& include_path : GlobalContext::CppIncludes()) { in BeginGeneratedFiles() local 93 file << "#include " << StringLiteralQuote(include_path) << "\n"; in BeginGeneratedFiles() 5321 for (const std::string& include_path : GlobalContext::CppIncludes()) { in GenerateEnumVerifiers() local 5322 cc_contents << "#include " << StringLiteralQuote(include_path) << "\n"; in GenerateEnumVerifiers() 5359 for (const std::string& include_path : GlobalContext::CppIncludes()) { in GenerateExportedMacrosAssembler() local 5360 cc_contents << "#include " << StringLiteralQuote(include_path) << "\n"; in GenerateExportedMacrosAssembler()
|
D | torque-parser.cc | 1219 auto include_path = child_results->NextAs<std::string>(); in MakeCppIncludeDeclaration() local 1221 MakeNode<CppIncludeDeclaration>(std::move(include_path)); in MakeCppIncludeDeclaration()
|
/third_party/unity/auto/ |
D | generate_test_runner.rb | 198 includes.each do |include_path| 199 include_file = File.basename(include_path) 200 …mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suff…
|
/third_party/json/tools/amalgamate/ |
D | amalgamate.py | 222 include_path = include_match.group("path") 225 include_path, self.file_dir if search_same_dir else None)
|
/third_party/alsa-lib/src/ |
D | conf.c | 479 struct include_path { struct 541 struct include_path *path; in add_include_path() 548 path = list_entry(pos, struct include_path, list); in add_include_path() 575 struct include_path *path; in free_include_paths() 579 path = list_entry(pos, struct include_path, list); in free_include_paths() 638 struct include_path *path; in input_stdio_open() 651 path = list_entry(pos, struct include_path, list); in input_stdio_open()
|
/third_party/python/Mac/BuildScript/ |
D | build-installer.py | 1301 include_path = '-I%s/libraries/usr/local/include' % (WORKDIR,) 1310 for p in (include_path, lib_path): 1352 for p in (include_path, lib_path):
|
/third_party/protobuf/benchmarks/ |
D | Makefile.am | 561 …p/protobuf.js && node generate_pbjs_files.js --target static-module --include_path=$$OLDDIR -o gen…
|