Home
last modified time | relevance | path

Searched refs:subpath (Results 1 – 25 of 37) 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/libmojo/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/syslinux/extlinux/
Dmountinfo.c195 const struct mountinfo *find_mount(const char *path, char **subpath) in find_mount() argument
240 if (best && subpath) { in find_mount()
242 *subpath = strdup("/"); in find_mount()
244 *subpath = strdup(real_path + best->pathlen); in find_mount()
256 char *subpath; in main() local
261 m = find_mount(argv[i], &subpath); in main()
268 argv[i], subpath, m->devpath, major(m->dev), minor(m->dev), in main()
271 free(subpath); in main()
Dmain.c239 char *dirpath, *subpath, *xdirpath; in patch_file_and_bootblock() local
255 subpath = strchr(dirpath, '\0'); in patch_file_and_bootblock()
257 if (*subpath == '/') { in patch_file_and_bootblock()
258 if (subpath > dirpath) { in patch_file_and_bootblock()
259 *subpath = '\0'; in patch_file_and_bootblock()
265 subpath = strchr(subpath+1, '/'); in patch_file_and_bootblock()
266 if (!subpath) in patch_file_and_bootblock()
267 subpath = "/"; /* It's the root of the filesystem */ in patch_file_and_bootblock()
270 *subpath = '/'; in patch_file_and_bootblock()
273 if (subpath == dirpath) in patch_file_and_bootblock()
[all …]
Dmountinfo.h33 const struct mountinfo *find_mount(const char *path, char **subpath);
/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.c334 struct dir_info *scan1_opendir(char *pathname, char *subpath, int depth);
840 static char *subpath = NULL; in subpathname() local
844 if(subpath == NULL) { in subpathname()
845 subpath = malloc(ALLOC_SIZE); in subpathname()
846 if(subpath == NULL) in subpathname()
851 if(dir_ent->our_dir->subpath[0] != '\0') in subpathname()
852 res = snprintf(subpath, size, "%s/%s", in subpathname()
853 dir_ent->our_dir->subpath, dir_ent->name); in subpathname()
855 res = snprintf(subpath, size, "/%s", dir_ent->name); in subpathname()
865 subpath = realloc(subpath, size); in subpathname()
[all …]
Dmksquashfs.h36 char *subpath; member
/external/syslinux/gpxe/src/interface/efi/
Defi_snp.c885 EFI_DEVICE_PATH_PROTOCOL *subpath; in efi_snp_driver_start() local
908 subpath = path; in efi_snp_driver_start()
909 while ( subpath->Type != END_DEVICE_PATH_TYPE ) { in efi_snp_driver_start()
910 subpath_len = ( ( subpath->Length[1] << 8 ) | in efi_snp_driver_start()
911 subpath->Length[0] ); in efi_snp_driver_start()
913 subpath = ( ( ( void * ) subpath ) + subpath_len ); in efi_snp_driver_start()
975 subpath = ( ( void * ) ( macpath + 1 ) ); in efi_snp_driver_start()
983 memset ( subpath, 0, sizeof ( *subpath ) ); in efi_snp_driver_start()
984 subpath->Type = END_DEVICE_PATH_TYPE; in efi_snp_driver_start()
985 subpath->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE; in efi_snp_driver_start()
[all …]
/external/antlr/antlr-3.4/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/tensorflow/tensorflow/core/platform/cloud/
Dgcs_file_system.cc197 string JoinGcsPath(const string& path, const string& subpath) { in JoinGcsPath() argument
198 return strings::StrCat(MaybeAppendSlash(path), subpath); in JoinGcsPath()
212 StringPiece subpath = io::Dirname(path); in AddAllSubpaths() local
213 while (!subpath.empty()) { in AddAllSubpaths()
214 result.emplace(subpath.ToString()); in AddAllSubpaths()
215 subpath = io::Dirname(subpath); in AddAllSubpaths()
1329 for (const string& subpath : children) { in RenameFile() local
1331 RenameObject(JoinGcsPath(src, subpath), JoinGcsPath(target, subpath))); in RenameFile()
/external/iproute2/etc/iproute2/
Dbpf_pinning2 # subpath mappings from mount point for pinning
/external/skia/infra/bots/
Drecipes.py161 subpath = dep.path_override
166 engine_path = os.path.join(engine, subpath)
/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/skqp/infra/bots/
Drecipes.py161 subpath = dep.path_override
166 engine_path = os.path.join(engine, subpath)
/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/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/python/cpython2/Doc/library/
Dzipimport.rst132 subpath.
137 The subpath within the ZIP file where modules are searched. This is the
/external/python/cpython3/Doc/library/
Dzipimport.rst130 subpath.
135 The subpath within the ZIP file where modules are searched. This is the

12