/external/llvm/utils/llvm-build/llvmbuild/ |
D | componentinfo.py | 33 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 …]
|
D | main.py | 68 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/chromium-trace/catapult/telemetry/telemetry/internal/util/ |
D | path.py | 43 def IsSubpath(subpath, superpath): argument 45 subpath = os.path.realpath(subpath) 48 while len(subpath) >= len(superpath): 49 if subpath == superpath: 51 subpath = os.path.split(subpath)[0]
|
/external/squashfs-tools/squashfs-tools/ |
D | action.c | 762 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 …]
|
D | android.c | 36 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()
|
D | info.c | 71 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()
|
D | android.h | 24 void alloc_mounted_path(const char *mount_point, const char *subpath, char **mounted_path);
|
D | mksquashfs.c | 327 struct dir_info *scan1_opendir(char *pathname, char *subpath, int depth); 814 static char *subpath = NULL; in subpathname() local 818 if(subpath == NULL) { in subpathname() 819 subpath = malloc(ALLOC_SIZE); in subpathname() 820 if(subpath == NULL) in subpathname() 825 if(dir_ent->our_dir->subpath[0] != '\0') in subpathname() 826 res = snprintf(subpath, size, "%s/%s", in subpathname() 827 dir_ent->our_dir->subpath, dir_ent->name); in subpathname() 829 res = snprintf(subpath, size, "/%s", dir_ent->name); in subpathname() 839 subpath = realloc(subpath, size); in subpathname() [all …]
|
D | mksquashfs.h | 36 char *subpath; member
|
D | action.h | 215 char *subpath; member
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
D | core-extensions.rb | 5 def /( subpath ) argument 6 File.join( self, subpath.to_s )
|
/external/llvm/utils/lit/lit/ |
D | discovery.py | 160 subpath = path_in_suite + (filename,) 161 file_execpath = ts.getExecPath(subpath) 182 subiter = getTestsInSuite(ts, subpath, litConfig, testSuiteCache,
|
/external/libweave/src/ |
D | device_registration_info.h | 96 std::string GetServiceURL(const std::string& subpath = {}, 102 std::string GetDeviceURL(const std::string& subpath = {}, 107 std::string GetOAuthURL(const std::string& subpath = {},
|
D | device_registration_info.cc | 94 const std::string& subpath, in BuildURL() argument 97 if (!result.empty() && result.back() != '/' && !subpath.empty()) { in BuildURL() 98 CHECK_NE('/', subpath.front()); in BuildURL() 101 result += subpath; in BuildURL() 275 const std::string& subpath, in GetServiceURL() argument 277 return BuildURL(GetSettings().service_url, subpath, params); in GetServiceURL() 281 const std::string& subpath, in GetDeviceURL() argument 285 "devices/" + GetSettings().cloud_id + "/" + subpath, params); in GetDeviceURL() 289 const std::string& subpath, in GetOAuthURL() argument 291 return BuildURL(GetSettings().oauth_url, subpath, params); in GetOAuthURL()
|
/external/iproute2/etc/iproute2/ |
D | bpf_pinning | 2 # subpath mappings from mount point for pinning
|
/external/iproute2/tc/ |
D | tc_bpf.c | 688 const char *subpath; member 918 return entry ? entry->subpath : NULL; in bpf_custom_pinning() 1510 char subpath[PATH_MAX]; in bpf_hash_init() local 1519 memset(subpath, 0, sizeof(subpath)); in bpf_hash_init() 1520 while ((ret = bpf_read_pin_mapping(fp, &pinning, subpath))) { in bpf_hash_init() 1523 db_file, subpath); in bpf_hash_init() 1541 entry->subpath = strdup(subpath); in bpf_hash_init() 1542 if (!entry->subpath) { in bpf_hash_init() 1563 free((char *)entry->subpath); in bpf_hash_destroy()
|
/external/libbrillo/brillo/ |
D | url_utils.cc | 66 std::string url::Combine(const std::string& url, const std::string& subpath) { in Combine() argument 67 return CombineMultiple(url, {subpath}); in Combine()
|
D | url_utils.h | 24 const std::string& subpath) WARN_UNUSED_RESULT;
|
/external/icu/icu4c/source/tools/tzcode/ |
D | zdump.c | 1077 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/skia/src/gpu/batches/ |
D | GrDefaultPathRenderer.cpp | 451 int subpath = 0; in createGeom() local 463 ++subpath; in createGeom()
|
/external/llvm/docs/ |
D | LLVMBuild.rst | 146 subpath to search for additional LLVMBuild files.
|
/external/llvm/docs/CommandGuide/ |
D | lit.rst | 341 test file and a subpath to identify the virtual test.
|
/external/opencv3/cmake/ |
D | OpenCVUtils.cmake | 696 …message(AUTHOR_WARNING "Can't detect subpath for source_group command: Group=${group} FILE=${f} DI…
|
/external/guice/extensions/persist/lib/ |
D | hibernate3.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/hibernate/
org/ ... |
D | hibernate-annotations.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/hibernate/
org/ ... |