Home
last modified time | relevance | path

Searched refs:subpath (Results 1 – 25 of 40) sorted by relevance

12

/external/llvm/utils/llvm-build/llvmbuild/
Dcomponentinfo.py33 def __init__(self, subpath, name, dependencies, parent): argument
34 if not subpath.startswith('/'):
35 raise ValueError("invalid subpath: %r" % subpath)
36 self.subpath = subpath
98 def parse(subpath, items): argument
100 return GroupComponentInfo(subpath, **kwargs)
102 def __init__(self, subpath, name, parent): argument
103 ComponentInfo.__init__(self, subpath, name, [], parent)
126 def parse(subpath, items): argument
128 return LibraryComponentInfo(subpath, **kwargs)
[all …]
Dmain.py68 def recurse(subpath): argument
70 llvmbuild_path = os.path.join(llvmbuild_source_root + subpath,
77 subpath)
83 for item in recurse(os.path.join(subpath, subdir)):
122 ci.name, ci.subpath, existing.subpath))
212 info_basedir[ci.subpath] = info_basedir.get(ci.subpath, []) + [ci]
218 if ci.subpath == '/':
222 parent_path = os.path.dirname(ci.subpath)
225 parent_list.add(os.path.basename(ci.subpath))
228 for subpath, infos in info_basedir.items():
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/llvm-build/llvmbuild/
Dcomponentinfo.py33 def __init__(self, subpath, name, dependencies, parent): argument
34 if not subpath.startswith('/'):
35 raise ValueError("invalid subpath: %r" % subpath)
36 self.subpath = subpath
98 def parse(subpath, items): argument
100 return GroupComponentInfo(subpath, **kwargs)
102 def __init__(self, subpath, name, parent): argument
103 ComponentInfo.__init__(self, subpath, name, [], parent)
126 def parse(subpath, items): argument
128 return LibraryComponentInfo(subpath, **kwargs)
[all …]
Dmain.py56 def recurse(subpath): argument
58 llvmbuild_path = os.path.join(llvmbuild_source_root + subpath,
65 subpath)
71 for item in recurse(os.path.join(subpath, subdir)):
110 ci.name, ci.subpath, existing.subpath))
200 info_basedir[ci.subpath] = info_basedir.get(ci.subpath, []) + [ci]
206 if ci.subpath == '/':
210 parent_path = os.path.dirname(ci.subpath)
213 parent_list.add(os.path.basename(ci.subpath))
216 for subpath, infos in info_basedir.items():
[all …]
/external/u-boot/arch/arm/mach-omap2/
Dfdt-common.c73 const char *path, *subpath; in ft_hs_fixup_dram() local
93 subpath = "reserved-memory"; in ft_hs_fixup_dram()
95 offs = fdt_add_subnode(fdt, offs, subpath); in ft_hs_fixup_dram()
97 printf("Could not create %s%s node.\n", path, subpath); in ft_hs_fixup_dram()
108 subpath = "secure_reserved"; in ft_hs_fixup_dram()
109 offs = fdt_add_subnode(fdt, offs, subpath); in ft_hs_fixup_dram()
111 printf("Could not create %s%s node.\n", path, subpath); in ft_hs_fixup_dram()
129 const char *path, *subpath; in ft_hs_add_tee() local
146 subpath = "firmware"; in ft_hs_add_tee()
147 offs = fdt_add_subnode(fdt, offs, subpath); in ft_hs_add_tee()
[all …]
/external/libchrome/build/android/gyp/util/
Dmd5_check.py102 def _GetOldTag(self, path, subpath=None): argument
103 return self.old_metadata and self.old_metadata.GetTag(path, subpath)
144 for subpath in self.new_metadata.IterSubpaths(path):
145 if self._GetOldTag(path, subpath) is None:
146 yield subpath
158 for subpath in self.old_metadata.IterSubpaths(path):
159 if self.new_metadata.GetTag(path, subpath) is None:
160 yield subpath
172 for subpath in self.new_metadata.IterSubpaths(path):
173 old_tag = self._GetOldTag(path, subpath)
[all …]
/external/squashfs-tools/squashfs-tools/
Daction.c762 if(action_data->subpath) in eval_expr_top()
763 expr_log(action_data->subpath); in eval_expr_top()
888 action_data.subpath = strdup(subpathname(dir_ent)); in eval_actions()
908 free(action_data.subpath); in eval_actions()
922 action_data.subpath = strdup(subpathname(dir_ent)); in eval_frag_actions()
932 free(action_data.subpath); in eval_frag_actions()
938 free(action_data.subpath); in eval_frag_actions()
975 int eval_exclude_actions(char *name, char *pathname, char *subpath, in eval_exclude_actions() argument
983 action_data.subpath = subpath; in eval_exclude_actions()
1525 action_data.subpath = strdup(subpathname(dir_ent)); in eval_empty_actions()
[all …]
Dandroid.c36 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path) { in alloc_mounted_path() argument
37 *mounted_path = malloc(strlen(mount_point) + strlen(subpath) + 1); in alloc_mounted_path()
43 strcat(*mounted_path, subpath); in alloc_mounted_path()
Dinfo.c71 if(dir_ent->our_dir->subpath[0] != '\0') in print_filename()
72 INFO("%s/%s\n", dir_ent->our_dir->subpath, dir_ent->name); in print_filename()
Dandroid.h24 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path);
Dmksquashfs.c346 struct dir_info *scan1_opendir(char *pathname, char *subpath, int depth);
880 static char *subpath = NULL; in subpathname() local
884 if(subpath == NULL) { in subpathname()
885 subpath = malloc(ALLOC_SIZE); in subpathname()
886 if(subpath == NULL) in subpathname()
891 if(dir_ent->our_dir->subpath[0] != '\0') in subpathname()
892 res = snprintf(subpath, size, "%s/%s", in subpathname()
893 dir_ent->our_dir->subpath, dir_ent->name); in subpathname()
895 res = snprintf(subpath, size, "/%s", dir_ent->name); in subpathname()
905 subpath = realloc(subpath, size); in subpathname()
[all …]
Dmksquashfs.h36 char *subpath; member
/external/antlr/runtime/Ruby/lib/antlr3/test/
Dcore-extensions.rb5 def /( subpath ) argument
6 File.join( self, subpath.to_s )
/external/llvm/utils/lit/lit/
Ddiscovery.py160 subpath = path_in_suite + (filename,)
161 file_execpath = ts.getExecPath(subpath)
182 subiter = getTestsInSuite(ts, subpath, litConfig, testSuiteCache,
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
Ddiscovery.py180 subpath = path_in_suite + (filename,)
181 file_execpath = ts.getExecPath(subpath)
202 subiter = getTestsInSuite(ts, subpath, litConfig, testSuiteCache,
/external/python/setuptools/pkg_resources/
D__init__.py1887 subpath = os.path.join(path_item, subitem)
1888 dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
1892 subpath = os.path.join(path_item, subitem)
1893 submeta = EggMetadata(zipimport.zipimporter(subpath))
1894 submeta.egg_info = subpath
2105 subpath = handler(importer, path_item, packageName, module)
2106 if subpath is not None:
2108 path.append(subpath)
2111 return subpath
2185 subpath = _handle_ns(package, path_item)
[all …]
/external/iproute2/etc/iproute2/
Dbpf_pinning2 # subpath mappings from mount point for pinning
/external/libbrillo/brillo/
Durl_utils.cc66 std::string url::Combine(const std::string& url, const std::string& subpath) { in Combine() argument
67 return CombineMultiple(url, {subpath}); in Combine()
Durl_utils.h24 const std::string& subpath) WARN_UNUSED_RESULT;
/external/icu/icu4c/source/tools/tzcode/
Dzdump.c1077 char subpath[FILENAME_MAX + 1]; in getzones() local
1084 strcpy(subpath, relpath); in getzones()
1085 strcat(subpath, "/"); in getzones()
1086 strcat(subpath, dir->d_name); in getzones()
1088 strcpy(subpath, dir->d_name); in getzones()
1090 getzones(basedir, subpath, last, count); in getzones()
/external/tensorflow/tensorflow/core/platform/cloud/
Dgcs_file_system.cc211 string JoinGcsPath(const string& path, const string& subpath) { in JoinGcsPath() argument
212 return strings::StrCat(MaybeAppendSlash(path), subpath); in JoinGcsPath()
226 StringPiece subpath = io::Dirname(path); in AddAllSubpaths() local
227 while (!subpath.empty()) { in AddAllSubpaths()
228 result.emplace(string(subpath)); in AddAllSubpaths()
229 subpath = io::Dirname(subpath); in AddAllSubpaths()
1513 for (const string& subpath : children) { in RenameFile() local
1515 RenameObject(JoinGcsPath(src, subpath), JoinGcsPath(target, subpath))); in RenameFile()
/external/cldr/tools/java/org/unicode/cldr/util/
DXMLSource.java1079 for (String subpath : reverseAliases.keySet()) { in getDirectAliases()
1082 paths[pathIndex].compareTo(subpath) < 0) { in getDirectAliases()
1088 List<String> list = reverseAliases.get(subpath); in getDirectAliases()
1090 int suffixStart = subpath.length(); in getDirectAliases()
1094 (xpath = paths[endIndex]).startsWith(subpath) && in getDirectAliases()
/external/iproute2/lib/
Dbpf.c1080 const char *subpath; member
1331 return entry ? entry->subpath : NULL; in bpf_custom_pinning()
2298 char subpath[PATH_MAX] = {}; in bpf_hash_init() local
2307 while ((ret = bpf_read_pin_mapping(fp, &pinning, subpath))) { in bpf_hash_init()
2310 db_file, subpath); in bpf_hash_init()
2328 entry->subpath = strdup(subpath); in bpf_hash_init()
2329 if (!entry->subpath) { in bpf_hash_init()
2350 free((char *)entry->subpath); in bpf_hash_destroy()
/external/tensorflow/tensorflow/python/util/
Dnest.py616 subpath = path + (shallow_key,)
620 path=subpath):
/external/python/cpython3/Doc/library/
Dzipimport.rst130 subpath.
135 The subpath within the ZIP file where modules are searched. This is the

12