Home
last modified time | relevance | path

Searched refs:include_path (Results 1 - 20 of 20) sorted by relevance

/third_party/skia/buildtools/checkdeps/
H A Dcpp_checker.py57 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, sel
[all...]
H A Dresults.py15 def __init__(self, include_path, violated_rule, rules):
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)
H A Drules.py173 def RuleApplyingTo(self, include_path, dependee_path):
174 """Returns the rule that applies to |include_path| for a dependee
181 if rule.ChildOrMatch(include_path):
184 if rule.ChildOrMatch(include_path):
/third_party/mbedtls/tests/scripts/
H A Dtest_psa_constant_names.py53 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/
H A Dgetsharedopensslhasquic.py5 def get_has_quic(include_path):
6 if include_path:
8 include_path,
/third_party/node/deps/openssl/openssl/crypto/conf/
H A Dconf_def.c446 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/
H A Dconf_def.c446 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/
H A Dc_build_helper.py127 header='', include_path=None,
138 * ``include_path``: a list of directories containing header files.
148 if include_path is None:
149 include_path = [] variable
163 compile_c_file(c_name, exe_name, include_path)
H A Dpsa_storage.py53 include_path=includes) #type: List[str]
/third_party/protobuf/benchmarks/php/
H A Dautoload.php9 function protobuf_autoloader_impl($class, $prefix, $include_path) {
12 $path = $include_path . '/' . implode('/', array_map('ucwords', explode('\\', $class))) . '.php';
/third_party/alsa-utils/topology/
H A Dtopology.c260 const char *pre_processor_defs, const char *include_path) in pre_process_run()
281 if (!include_path) in pre_process_run()
284 inc_path = strdup(include_path); in pre_process_run()
296 const char *pre_processor_defs, const char *include_path) in pre_process_conf()
302 pre_processor_defs, include_path); in pre_process_conf()
312 const char *pre_processor_defs, const char *include_path) in compile()
331 pre_processor_defs, include_path); in compile()
258 pre_process_run(struct tplg_pre_processor **tplg_pp, const char *source_file, const char *output_file, const char *pre_processor_defs, const char *include_path) pre_process_run() argument
295 pre_process_conf(const char *source_file, const char *output_file, const char *pre_processor_defs, const char *include_path) pre_process_conf() argument
311 compile(const char *source_file, const char *output_file, int cflags, const char *pre_processor_defs, const char *include_path) compile() argument
/third_party/alsa-lib/src/
H A Dconf.c479 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()
642 struct include_path *path; in input_stdio_open()
655 path = list_entry(pos, struct include_path, list); in input_stdio_open()
/third_party/node/deps/v8/src/torque/
H A Dglobal-context.h39 static void AddCppInclude(std::string include_path) { in AddCppInclude() argument
40 Get().cpp_includes_.insert(std::move(include_path)); in AddCppInclude()
H A Dast.h1245 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
H A Ddeclaration-visitor.cc293 GlobalContext::AddCppInclude(decl->include_path); in Visit()
H A Dimplementation-visitor.cc92 for (const std::string& include_path : GlobalContext::CppIncludes()) { in BeginGeneratedFiles()
93 file << "#include " << StringLiteralQuote(include_path) << "\n"; in BeginGeneratedFiles()
5321 for (const std::string& include_path : GlobalContext::CppIncludes()) { in GenerateEnumVerifiers()
5322 cc_contents << "#include " << StringLiteralQuote(include_path) << "\n"; in GenerateEnumVerifiers()
5359 for (const std::string& include_path : GlobalContext::CppIncludes()) { in GenerateExportedMacrosAssembler()
5360 cc_contents << "#include " << StringLiteralQuote(include_path) << "\n"; in GenerateExportedMacrosAssembler()
H A Dtorque-parser.cc1219 auto include_path = child_results->NextAs<std::string>(); in MakeCppIncludeDeclaration() local
1221 MakeNode<CppIncludeDeclaration>(std::move(include_path)); in MakeCppIncludeDeclaration()
/third_party/unity/auto/
H A Dgenerate_test_runner.rb220 includes.each do |include_path|
221 include_file = File.basename(include_path)
222 mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suffix]}\.h$/i
/third_party/json/tools/amalgamate/
H A Damalgamate.py222 include_path = include_match.group("path")
225 include_path, self.file_dir if search_same_dir else None)
/third_party/python/Mac/BuildScript/
H A Dbuild-installer.py1310 include_path = '-I%s/libraries/usr/local/include' % (WORKDIR,)
1319 for p in (include_path, lib_path):
1361 for p in (include_path, lib_path):

Completed in 41 milliseconds