/external/python/cpython2/Lib/test/ |
D | test_posixpath.py | 8 from posixpath import realpath, abspath, dirname, basename 305 self.assertEqual(realpath('.'), os.getcwd()) 306 self.assertEqual(realpath('./.'), os.getcwd()) 307 self.assertEqual(realpath('/'.join(['.'] * 100)), os.getcwd()) 311 self.assertEqual(realpath('..'), dirname(os.getcwd())) 312 self.assertEqual(realpath('../..'), dirname(dirname(os.getcwd()))) 313 self.assertEqual(realpath('/'.join(['..'] * 100)), '/') 320 self.assertEqual(realpath(ABSTFN), ABSTFN+"1") 329 self.assertEqual(realpath(ABSTFN), ABSTFN) 333 self.assertEqual(realpath(ABSTFN+"1"), ABSTFN+"1") [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_posixpath.py | 5 from posixpath import realpath, abspath, dirname, basename 298 self.assertEqual(realpath('.'), os.getcwd()) 299 self.assertEqual(realpath('./.'), os.getcwd()) 300 self.assertEqual(realpath('/'.join(['.'] * 100)), os.getcwd()) 302 self.assertEqual(realpath(b'.'), os.getcwdb()) 303 self.assertEqual(realpath(b'./.'), os.getcwdb()) 304 self.assertEqual(realpath(b'/'.join([b'.'] * 100)), os.getcwdb()) 308 self.assertEqual(realpath('..'), dirname(os.getcwd())) 309 self.assertEqual(realpath('../..'), dirname(dirname(os.getcwd()))) 310 self.assertEqual(realpath('/'.join(['..'] * 100)), '/') [all …]
|
/external/autotest/site_utils/ |
D | test_droid.py | 30 os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 111 os.path.realpath(__file__))) 113 realpath = os.path.realpath(__file__) 114 site_utils_path = os.path.realpath(site_utils_path)
|
D | test_that.py | 284 realpath = os.path.realpath(__file__) 285 site_utils_path = os.path.realpath(site_utils_path) 290 if os.path.dirname(realpath) != site_utils_path: 314 autotest_path = os.path.realpath(os.path.join( 315 os.path.dirname(os.path.realpath(__file__)),
|
/external/toolchain-utils/android_bench_suite/ |
D | apply_patches.py | 27 os.path.dirname(os.path.realpath(__file__)), 'skia_aosp.diff') 44 os.path.dirname(os.path.realpath(__file__)), 'autotest.diff') 63 os.path.dirname(os.path.realpath(__file__)), 'panorama.diff') 85 os.path.dirname(os.path.realpath(__file__)), 'synthmark.diff')
|
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/ |
D | list_ports_linux.py | 67 bus, dev = os.path.basename(os.path.realpath(sysfs_path)).split('-') 80 base = os.path.basename(os.path.realpath(sysfs_path)) 107 sys_usb = os.path.dirname(os.path.dirname(os.path.realpath(sys_dev_path))) 117 product_name_file = os.path.dirname(os.path.realpath(sys_dev_path)) + "/product" 134 sys_usb = os.path.dirname(os.path.dirname(os.path.realpath(sys_dev_path)))
|
/external/flatbuffers/android/jni/ |
D | include.mk | 41 realpath-portable = $(join $(filter %:,$(subst :,: ,$1)),\ 42 $(realpath $(filter-out %:,$(subst :,: ,$1)))) 57 $(call realpath-portable,$(dir $(lastword $(MAKEFILE_LIST)))/../..) 81 $(call realpath-portable,$(LOCAL_PATH)/../../../../../../prebuilts/cmake) 186 realpath-portable,$(LOCAL_PATH)/$1))
|
/external/autotest/bin/ |
D | python_venv | 31 realpath() { function 40 local create_venv=$(realpath "${p}/bin/create_venv") 58 readonly extra_imports_dir=$(realpath ../venv)
|
/external/autotest/skylab_migration/bin/ |
D | python_venv | 32 realpath() { function 41 local create_venv=$(realpath "${p}/bin/create_venv") 59 readonly extra_imports_dir=$(realpath ../venv)
|
/external/syslinux/core/fs/ |
D | chdir.c | 18 realpath(dst, src, FILENAME_MAX); in pm_realpath() 58 __export size_t realpath(char *dst, const char *src, size_t bufsize) in realpath() function 66 if (this_fs->fs_ops->realpath) { in realpath() 67 s = this_fs->fs_ops->realpath(this_fs, dst, src, bufsize); in realpath()
|
/external/ltp/android/tools/ |
D | gen_android_build.sh | 18 TOOLS_DIR=$(realpath $(dirname $0)) 19 LTP_ANDROID_DIR=$(realpath $TOOLS_DIR/..) 20 LTP_ROOT=$(realpath $LTP_ANDROID_DIR/..)
|
D | dump_make_dryrun.sh | 18 TOOLS_DIR=$(realpath $(dirname $0)) 19 LTP_ROOT=$(realpath $TOOLS_DIR/../..)
|
/external/skia/infra/bots/assets/skp/ |
D | create.py | 28 browser_executable = os.path.realpath(browser_executable) 29 chrome_src_path = os.path.realpath(chrome_src_path) 30 target_dir = os.path.realpath(target_dir)
|
/external/skqp/infra/bots/assets/skp/ |
D | create.py | 28 browser_executable = os.path.realpath(browser_executable) 29 chrome_src_path = os.path.realpath(chrome_src_path) 30 target_dir = os.path.realpath(target_dir)
|
/external/swiftshader/third_party/LLVM/ |
D | Makefile.config.in | 42 # The macro below is expanded when 'realpath' is not built-in. 43 # Built-in 'realpath' is available on GNU Make 3.81. 44 realpath = $(shell cd $(1); $(PWD)) 46 PROJ_OBJ_DIR := $(call realpath, .) 47 PROJ_OBJ_ROOT := $(call realpath, $(PROJ_OBJ_DIR)/$(LEVEL)) 50 LLVM_SRC_ROOT := $(call realpath, @abs_top_srcdir@) 51 LLVM_OBJ_ROOT := $(call realpath, @abs_top_builddir@) 53 PROJ_SRC_DIR := $(call realpath, $(LLVM_SRC_ROOT)/$(patsubst $(PROJ_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR)… 73 PROJ_SRC_DIR := $(call realpath, $(PROJ_SRC_ROOT)/$(patsubst $(PROJ_OBJ_ROOT)%,%,$(PROJ_OBJ_DIR)))
|
/external/v8/tools/clang/scripts/ |
D | apply_edits.py | 28 script_dir = os.path.dirname(os.path.realpath(__file__)) 54 return [os.path.realpath(p) for p in output.splitlines()] 76 resolved_path = os.path.realpath(os.path.join(build_directory, path)) 217 if os.path.realpath(k) in filenames})
|
D | test_tool.py | 107 tools_clang_scripts_directory = os.path.dirname(os.path.realpath(__file__)) 121 os.path.realpath(os.path.join(tools_clang_directory, '../..'))) 125 os.path.realpath(os.path.join(tools_clang_directory, 129 os.path.realpath(os.path.join(tools_clang_directory,
|
/external/tensorflow/tensorflow/tools/ci_build/builds/ |
D | test_user_ops.sh | 130 OP_KERNEL_CC=$(realpath "${OP_KERNEL_CC}") 169 OP_KERNEL_CU=$(realpath "${OP_KERNEL_CU}") 175 OP_KERNEL_CC=$(realpath "${OP_KERNEL_CC}")
|
/external/valgrind/none/tests/darwin/ |
D | apple-main-arg.c | 26 realpath(argv[0], pargv); in main() 27 realpath(apple[0], pappl); in main()
|
/external/toolchain-utils/ |
D | tc_enter_chroot.py | 28 self.external_dir = os.path.realpath(external_dir) 29 self.mount_dir = os.path.realpath(mount_dir) 171 version_dir = os.path.realpath(os.path.expanduser(os.path.dirname(__file__))) 298 if os.path.realpath(real_from_file) != os.path.realpath(link_name):
|
/external/libcxx/ |
D | run_tests.py | 26 THIS_DIR = os.path.dirname(os.path.realpath(__file__)) 27 ANDROID_DIR = os.path.realpath(os.path.join(THIS_DIR, '../..')) 131 real_path = os.path.realpath(arg)
|
/external/valgrind/ |
D | exp-sgcheck.supp | 10 glibc realpath false positive 12 fun:realpath
|
/external/deqp/scripts/ |
D | cppcheck.py | 136 fullDstFile = os.path.realpath(dstFile) 159 srcDir = os.path.realpath(os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..")))
|
/external/python/cpython2/Lib/unittest/ |
D | loader.py | 259 realpath = os.path.splitext(os.path.realpath(mod_file))[0] 260 fullpath_noext = os.path.splitext(os.path.realpath(full_path))[0] 261 if realpath.lower() != fullpath_noext.lower(): 262 module_dir = os.path.dirname(realpath)
|
/external/v8/gypfiles/ |
D | gyp_v8 | 43 script_dir = os.path.dirname(os.path.realpath(__file__)) 85 specified_includes.add(os.path.realpath(arg[2:])) 89 if os.path.realpath(path) not in specified_includes:
|