/external/eigen/doc/ |
D | eigen_navtree_hacks.js | 78 function initNavTree(toroot,relpath) argument 91 o.node.relpath = relpath; 95 o.node.plus_img.src = relpath+"ftv2pnode.png"; 102 showSyncOff(navSync,relpath); 105 showSyncOn(navSync,relpath); 107 navSync.click(function(){ toggleSyncButton(relpath); }); 110 navTo(o,toroot,window.location.hash,relpath); 125 navTo(o,link,$(location).attr('hash'),relpath); 130 navTo(o,toroot,window.location.hash,relpath); 170 node.plus_img.src = node.relpath+"ftv2pnode.png"; [all …]
|
/external/ltp/testcases/kernel/syscalls/mkdirat/ |
D | mkdirat01.c | 44 static char relpath[256]; variable 56 {&dir_fd, relpath, 0, 0}, 58 {&fd_atcwd, relpath, 0, 0}, 59 {&fd, relpath, -1, ENOTDIR}, 60 {&fd_invalid, relpath, -1, EBADF}, 94 sprintf(relpath, "mkdiratrelpath%d_%d", getpid(), i); in setup_iteration()
|
/external/python/cpython2/Lib/test/ |
D | test_posixpath.py | 456 self.assertRaises(ValueError, posixpath.relpath, "") 457 self.assertEqual(posixpath.relpath("a"), "a") 458 self.assertEqual(posixpath.relpath(posixpath.abspath("a")), "a") 459 self.assertEqual(posixpath.relpath("a/b"), "a/b") 460 self.assertEqual(posixpath.relpath("../a/b"), "../a/b") 461 self.assertEqual(posixpath.relpath("a", "../b"), "../"+curdir+"/a") 462 self.assertEqual(posixpath.relpath("a/b", "../c"), "../"+curdir+"/a/b") 463 self.assertEqual(posixpath.relpath("a", "b/c"), "../../a") 464 self.assertEqual(posixpath.relpath("a", "a"), ".") 465 self.assertEqual(posixpath.relpath("/foo/bar/bat", "/x/y/z"), '../../../foo/bar/bat') [all …]
|
D | test_py_compile.py | 44 py_compile.compile(os.path.relpath(self.source_path), 45 os.path.relpath(self.pyc_path))
|
/external/v8/tools/clang/translation_unit/ |
D | test_translation_unit.py | 64 print '[ RUN ] %s' % os.path.relpath(actual) 83 fromfile=os.path.relpath(expected), 84 tofile=os.path.relpath(actual)): 86 print '[ FAILED ] %s' % os.path.relpath(actual) 90 print '[ OK ] %s' % os.path.relpath(actual)
|
/external/skia/infra/bots/ |
D | gen_tasks.go | 341 func relpath(f string) string { func 365 Isolate: relpath("bundle_recipes.isolate"), 405 Isolate: relpath(ISOLATE_ASSET_MAPPING[name].isolateFile), 501 Isolate: relpath("compile_skia.isolate"), 532 Isolate: relpath("compile_skia.isolate"), 556 Isolate: relpath("meta_config.isolate"), 581 Isolate: relpath("ct_skps_skia.isolate"), 605 Isolate: relpath("housekeeper_skia.isolate"), 628 Isolate: relpath("infra_skia.isolate"), 669 Isolate: relpath("test_skia.isolate"), [all …]
|
D | zip_utils.py | 36 zi.filename = os.path.relpath(filepath, target_dir) 45 z.write(dirpath, os.path.relpath(dirpath, target_dir))
|
/external/v8/tools/clang/scripts/ |
D | test_tool.py | 154 print '[ RUN ] %s' % os.path.relpath(actual) 163 fromfile=os.path.relpath(expected), 164 tofile=os.path.relpath(actual)): 166 print '[ FAILED ] %s' % os.path.relpath(actual) 170 print '[ OK ] %s' % os.path.relpath(actual)
|
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
D | libcpuset.c | 2016 static int cr_or_mod(const char *relpath, const struct cpuset *cp, int new) in cr_or_mod() argument 2030 fullpath(buf, sizeof(buf), relpath); in cr_or_mod() 2041 if (cpuset_query(cp_sav, relpath) < 0) in cr_or_mod() 2067 int cpuset_create(const char *relpath, const struct cpuset *cp) in cpuset_create() argument 2069 return cr_or_mod(relpath, cp, 1); in cpuset_create() 2073 int cpuset_delete(const char *relpath) in cpuset_delete() argument 2080 fullpath(buf, sizeof(buf), relpath); in cpuset_delete() 2090 int cpuset_query(struct cpuset *cp, const char *relpath) in cpuset_query() argument 2097 fullpath(buf, sizeof(buf), relpath); in cpuset_query() 2174 int cpuset_modify(const char *relpath, const struct cpuset *cp) in cpuset_modify() argument [all …]
|
D | cpuinfo.c | 316 static int find_domain_cpusets(char *relpath) in find_domain_cpusets() argument 322 if (relpath == NULL) { in find_domain_cpusets() 333 if (cpuset_query(cp, relpath)) { in find_domain_cpusets() 348 while_each_childdir(cpuset_mountpoint(), relpath, c_relpath, in find_domain_cpusets()
|
/external/devlib/ |
D | setup.py | 44 rel_dir = os.path.relpath(root, source_dir) 57 data_files[package_name].extend([os.path.relpath(f, package_dir) for f in filepaths])
|
/external/libmojo/mojo/public/tools/gn/ |
D | zip.py | 27 file_name = os.path.relpath(f, base_dir) 32 file_name = os.path.relpath(realf, base_dir)
|
/external/icu/icu4c/source/tools/tzcode/ |
D | zdump.c | 1042 static void getzones(char * basedir, char * relpath, struct listentry ** last, int * count) { in getzones() argument 1048 if (relpath != NULL) { in getzones() 1050 strcat(path, relpath); in getzones() 1055 if (strstr(relpath, ".tab") == NULL && strcmp(relpath, "Etc/Unknown") != 0) { in getzones() 1059 if ((pzonename = malloc(strlen(relpath) + 1)) == NULL) { in getzones() 1062 strcpy(pzonename, relpath); in getzones() 1083 if (relpath != NULL) { in getzones() 1084 strcpy(subpath, relpath); in getzones()
|
/external/v8/tools/ |
D | isolate_driver.py | 222 src_isolate = os.path.relpath(os.path.join(cwd, isolate), SRC_DIR) 230 isolate_relpath = os.path.relpath( 292 args[index] = os.path.relpath(os.path.abspath(args[index]), abs_base)
|
/external/chromium-trace/catapult/tracing/ |
D | tracing_project.py | 142 return [os.path.relpath(x, self.tracing_root_path) 152 return [os.path.relpath(x, self.tracing_root_path) 162 return [os.path.relpath(x, self.tracing_root_path)
|
/external/libmojo/third_party/catapult/devil/devil/utils/ |
D | zip_utils.py | 20 dir_arc_path = os.path.join(arc_path, os.path.relpath(dir_path, path))
|
/external/vixl/tools/ |
D | lint.py | 230 relative_aarch32_traces_path = os.path.relpath(config.dir_aarch32_traces,'.') 231 relative_aarch64_traces_path = os.path.relpath(config.dir_aarch64_traces,'.')
|
/external/google-breakpad/src/build/ |
D | gyp_breakpad | 58 args.append('--depth=' + os.path.relpath(breakpad_root))
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | zip_utils.py | 22 dir_arc_path = os.path.join(arc_path, os.path.relpath(dir_path, path))
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/support/ |
D | run_bindings_generator.py | 17 mojom_reldir = os.path.dirname(os.path.relpath(mojom_file, root_dir))
|
/external/python/cpython2/Lib/plat-mac/ |
D | bundlebuilder.py | 571 relpath = pathjoin("Contents", "Resources", ZIP_ARCHIVE) 572 abspath = pathjoin(self.bundlepath, relpath) 618 relpath = path[len(self.bundlepath):] 619 self.message("Stripping %s" % relpath, 2) 626 self.message("Problem stripping %s:" % relpath, 3)
|
/external/kmod/tools/ |
D | depmod.c | 795 const char *relpath; /* path relative to '$ROOT/lib/modules/$VER/' */ member 948 mod->relpath = mod->path + cfg->dirnamelen + 1; in depmod_module_add() 950 mod->relpath = NULL; in depmod_module_add() 958 if (mod->relpath != NULL) { in depmod_module_add() 959 size_t uncrelpathlen = lastslash - mod->relpath + modnamesz in depmod_module_add() 961 mod->uncrelpath = memdup(mod->relpath, uncrelpathlen + 1); in depmod_module_add() 1059 const char *relpath; in depmod_modules_search_file() local 1072 relpath = path + depmod->cfg->dirnamelen + 1; in depmod_modules_search_file() 1073 DBG("try %s (%s)\n", relpath, modname); in depmod_modules_search_file() 1087 mod->relpath, relpath); in depmod_modules_search_file() [all …]
|
/external/webrtc/webrtc/build/ |
D | merge_libs.py | 43 files.append(os.path.relpath(os.path.join(root, filename)))
|
/external/libyuv/files/ |
D | gyp_libyuv | 87 args.append('--depth=' + os.path.relpath(checkout_root))
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
D | perf_tracing_agent.py | 150 os.path.relpath(perfhost_path, '.'), perf_profile, symfs_dir, kallsyms) 158 cmd += ' --objdump %s' % os.path.relpath(objdump_path, '.')
|