/external/rust/crates/walkdir/src/tests/ |
D | recursive.rs | 59 let wd = WalkDir::new(dir.path().join("a")); in empty_file() 68 assert_eq!(dir.join("a"), ent.path()); in empty_file() 77 let wd = WalkDir::new(dir.path().join("a")).follow_links(true); in empty_file_follow() 86 assert_eq!(dir.join("a"), ent.path()); in empty_file_follow() 102 assert_eq!(dir.join("a"), ent.path()); in one_dir() 120 assert_eq!(dir.join("a"), ent.path()); in one_file() 138 dir.join("foo"), in one_dir_one_file() 139 dir.join("foo").join("a"), in one_dir_one_file() 156 dir.join("foo"), in many_files() 157 dir.join("foo").join("a"), in many_files() [all …]
|
/external/skqp/infra/bots/recipe_modules/build/ |
D | chromebook.py | 7 skia_dir = checkout_root.join('skia') 11 clang_linux = api.vars.slave_dir.join('clang_linux') 13 sysroot_dir = api.vars.slave_dir.join('armhf_sysroot') 18 gl_dir = api.vars.slave_dir.join('chromebook_arm_gles') 19 env = {'LD_LIBRARY_PATH': sysroot_dir.join('lib')} 31 '-I%s' % gl_dir.join('include'), 32 '-I%s' % sysroot_dir.join('include'), 33 '-I%s' % sysroot_dir.join('include', 'c++', '4.8.4'), 34 '-I%s' % sysroot_dir.join('include', 'c++', '4.8.4', 44 '-B%s' % sysroot_dir.join('bin'), [all …]
|
D | default.py | 19 script=skia_dir.join('tools', 'build_command_buffer.py'), 37 cmake_bin = str(api.vars.slave_dir.join('cmake_linux', 'bin')) 52 skia_dir = checkout_root.join('skia') 59 clang_linux = str(api.vars.slave_dir.join('clang_linux')) 60 win_toolchain = str(api.vars.slave_dir.join('win_toolchain')) 61 moltenvk = str(api.vars.slave_dir.join('moltenvk')) 72 mac_toolchain_cmd = api.vars.slave_dir.join( 74 xcode_app_path = api.vars.cache_dir.join('Xcode.app') 108 mips64el_toolchain_linux = str(api.vars.slave_dir.join( 135 cxx = skia_dir.join("tools/clang-tidy.sh") [all …]
|
/external/chromium-trace/catapult/tracing/ |
D | tracing_project.py | 29 os.path.join(p.catapult_third_party_path, 'WebOb'), 30 os.path.join(p.catapult_third_party_path, 'Paste'), 31 os.path.join(p.catapult_third_party_path, 'six'), 32 os.path.join(p.catapult_third_party_path, 'webapp2'), 33 os.path.join(p.catapult_path, 'common', 'py_utils'), 34 os.path.join(p.tracing_third_party_path, 'symbols') 46 x = os.path.abspath(os.path.join(dirpath, f)) 69 os.path.join(os.path.dirname(__file__), os.path.pardir)) 71 tracing_root_path = os.path.join(catapult_path, 'tracing') 72 trace_processor_root_path = os.path.join(catapult_path, 'trace_processor') [all …]
|
/external/tensorflow/tensorflow/python/lib/io/ |
D | file_io_test.py | 47 ("str", os.path.join), 48 ("pathlike", lambda *paths: PathLike(os.path.join(*paths)))) 54 self._base_dir = os.path.join(self.get_temp_dir(), "base_dir") 66 def testFileDoesntExist(self, join): argument 67 file_path = join(self._base_dir, "temp_file") 73 def testWriteToString(self, join): argument 74 file_path = join(self._base_dir, "temp_file") 81 file_path = os.path.join(self._base_dir, "temp_file") 88 file_path = os.path.join(self._base_dir, "temp_file") 100 def testReadBinaryMode(self, join): argument [all …]
|
/external/mockito/src/main/java/org/mockito/internal/exceptions/ |
D | Reporter.java | 40 import static org.mockito.internal.util.StringUtil.join; 61 return new MockitoException(join( in checkedExceptionInvalid() 68 return new MockitoException(join( in cannotStubWithNullThrowable() 75 return new UnfinishedStubbingException(join( in unfinishedStubbing() 93 return new MockitoException(join( in incorrectUseOfApi() 106 return new MissingMethodInvocationException(join( in missingMethodInvocation() 121 return new UnfinishedVerificationException(join( in unfinishedVerificationException() 136 return new NotAMockException(join( in notAMockPassedToVerify() 147 return new NullInsteadOfMockException(join( in nullPassedToVerify() 159 return new NotAMockException(join( in notAMockPassedToWhenMethod() [all …]
|
/external/autotest/client/cros/bluetooth/ |
D | bluetooth_audio_test_data.py | 21 VISQOL_TARBALL = os.path.join(DIST_FILES, 'visqol-binary.tar.gz') 23 VISQOL_TARBALL_LOCAL_PATH = os.path.join(DATA_DIR, 25 VISQOL_FOLDER = os.path.join(DATA_DIR, 'visqol') 26 VISQOL_PATH = os.path.join(VISQOL_FOLDER, 'visqol') 33 VISQOL_SIMILARITY_MODEL = os.path.join( 36 VISQOL_TEST_DIR = os.path.join(VISQOL_FOLDER, 'bt-test-output') 39 AUDIO_TARBALL = os.path.join(DIST_FILES, 'chameleon-bundle', 42 AUDIO_RECORD_DIR = os.path.join(DATA_DIR, 'audio') 48 AUDIO_TEST_DATA_DIR = os.path.join(DATA_DIR, 50 AUDIO_DATA_TARBALL_PATH = os.path.join(DATA_DIR, AUDIO_TARBALL_NAME) [all …]
|
/external/vixl/tools/test_generator/ |
D | generator.py | 183 args=",".join(operand_types.GetNames()), 277 args=", ".join(input_types.GetNames()), 350 return "".join([ 364 return "".join([operand.Declare() for operand in self.operands]) 375 return "".join([input.Declare() for input in self.inputs]) 387 "{{{}}}".format(",".join(input)) 392 """.format(name=test_input.name, input=",".join(inputs)) 394 return "\n".join(map(InputDefinition, self.test_cases)) 438 """.format(operands=",".join(operand), 439 operands_description=" ".join(operand), [all …]
|
/external/skia/infra/bots/recipe_modules/build/ |
D | chromebook.py | 16 skia_dir = checkout_root.join('skia') 26 clang_linux = os.path.join(top_level, 'clang_linux') 28 sysroot_dir = os.path.join(top_level, 'armhf_sysroot') 31 'cc': "%s" % os.path.join(clang_linux, 'bin','clang'), 32 'cxx': "%s" % os.path.join(clang_linux, 'bin','clang++'), 46 gl_dir = os.path.join(top_level, 'chromebook_arm_gles') 47 env = {'LD_LIBRARY_PATH': os.path.join(sysroot_dir, 'lib')} 59 '-I%s' % os.path.join(gl_dir, 'include'), 60 '-I%s' % os.path.join(sysroot_dir, 'include'), 61 '-I%s' % os.path.join(sysroot_dir, 'include', 'c++', '6'), [all …]
|
D | default.py | 11 script=skia_dir.join('tools', 'build_command_buffer.py'), 35 cmake_bin = str(api.vars.workdir.join('cmake_linux', 'bin')) 56 clang_linux = str(api.vars.workdir.join('clang_linux')) 58 cflags = ' '.join([ 82 skia_dir = checkout_root.join('skia') 89 clang_linux = str(api.vars.workdir.join('clang_linux')) 90 win_toolchain = str(api.vars.workdir.join('win_toolchain')) 109 mac_toolchain_cmd = api.vars.workdir.join( 111 xcode_app_path = api.vars.cache_dir.join('Xcode.app') 145 ccache = api.vars.workdir.join('ccache_linux', 'bin', 'ccache') [all …]
|
/external/python/cpython3/Mac/BuildScript/ |
D | build-installer.py | 88 os.path.join(SRCDIR, 'configure'), 'PACKAGE_VERSION') 100 fn = os.path.join(SRCDIR, 'Include', 'patchlevel.h') 116 DEPSRC = os.path.join(WORKDIR, 'third-party') 287 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')), 305 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')), 354 shellQuote(os.path.join(WORKDIR, 'libraries')), 355 shellQuote(os.path.join(WORKDIR, 'libraries')), 390 shellQuote(os.path.join(WORKDIR, 'libraries')), 391 ' -arch '.join(ARCHLIST), 401 shellQuote(os.path.join(WORKDIR, 'libraries')), [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_macpath.py | 33 join = macpath.join 34 self.assertEqual(join('a', 'b'), ':a:b') 35 self.assertEqual(join(':a', 'b'), ':a:b') 36 self.assertEqual(join(':a:', 'b'), ':a:b') 37 self.assertEqual(join(':a::', 'b'), ':a::b') 38 self.assertEqual(join(':a', '::b'), ':a::b') 39 self.assertEqual(join('a', ':'), ':a:') 40 self.assertEqual(join('a:', ':'), 'a:') 41 self.assertEqual(join('a', ''), ':a:') 42 self.assertEqual(join('a:', ''), 'a:') [all …]
|
/external/python/cpython2/Mac/BuildScript/ |
D | build-installer.py | 89 os.path.join(SRCDIR, 'configure'), 'PACKAGE_VERSION') 101 fn = os.path.join(SRCDIR, 'Include', 'patchlevel.h') 117 DEPSRC = os.path.join(WORKDIR, 'third-party') 237 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')), 257 "DESTDIR": shellQuote(os.path.join(WORKDIR, 'libraries')), 306 shellQuote(os.path.join(WORKDIR, 'libraries')), 307 shellQuote(os.path.join(WORKDIR, 'libraries')), 342 shellQuote(os.path.join(WORKDIR, 'libraries')), 343 ' -arch '.join(ARCHLIST), 353 shellQuote(os.path.join(WORKDIR, 'libraries')), [all …]
|
/external/autotest/client/bin/ |
D | local_host_unittest.py | 147 files = (os.path.join(self.tmpdir.name, 'file1'), 148 os.path.join(self.tmpdir.name, 'file2')) 156 host.list_files_glob(os.path.join(self.tmpdir.name, '*'))) 163 fname = os.path.join(self.tmpdir.name, 'file') 164 sname = os.path.join(self.tmpdir.name, 'sym') 179 fname = os.path.join(self.tmpdir.name, 'file') 180 sname = os.path.join(self.tmpdir.name, 'sym') 194 source_file = os.path.join(self.tmpdir.name, 'file') 195 open(os.path.join(source_file), 'w').close() 197 dest_file = os.path.join(self.tmpdir.name, 'dest') [all …]
|
/external/icu/tools/ |
D | updatecldrdata.py | 33 cldr_build_dir = os.path.join(build_dir, 'cldr') 34 icu4c_build_dir = os.path.join(build_dir, 'icu4c') 35 icu4j_build_dir = os.path.join(build_dir, 'icu4j') 36 icu_tools_build_dir = os.path.join(build_dir, 'icu_tools') 41 shutil.copytree(os.path.join(icu_dir, 'icu4c'), icu4c_build_dir, symlinks=True) 43 shutil.copytree(os.path.join(icu_dir, 'icu4j'), icu4j_build_dir, symlinks=True) 45 shutil.copytree(os.path.join(icu_dir, 'tools'), icu_tools_build_dir, symlinks=True) 57 cldr_tmp_dir = os.path.join(build_dir, 'cldr-staging') 60 icu_tools_cldr_dir = os.path.join(icu_tools_build_dir, 'cldr') 66 icu4c_data_build_dir = os.path.join(icu4c_build_dir, 'source/data') [all …]
|
/external/rust/crates/textwrap/src/ |
D | indentation.rs | 156 ].join(""); in indent_nonempty() 161 ].join(""); in indent_nonempty() 173 ].join("\n"); in indent_empty_line() 179 ].join("\n"); in indent_empty_line() 195 ].join("\n"); in dedent_multi_line() 200 ].join("\n"); in dedent_multi_line() 212 ].join("\n"); in dedent_empty_line() 218 ].join("\n"); in dedent_empty_line() 232 ].join("\n"); in dedent_blank_line() 240 ].join("\n"); in dedent_blank_line() [all …]
|
/external/perfetto/tools/ |
D | run_android_emulator | 30 emulator_root = os.path.join(root_dir, 'buildtools', 'emulator', 32 emulator_path = os.path.join(emulator_root, 'qemu', 'linux-x86_64') 34 emulator_root = os.path.join(root_dir, 'buildtools', 'emulator', 36 emulator_path = os.path.join(emulator_root, 'qemu', 'darwin-x86_64') 38 aosp_path = os.path.join(root_dir, 'buildtools', 'aosp-arm') 44 'LD_LIBRARY_PATH': os.path.join(emulator_root, 'lib64', 'qt', 'lib'), 45 'DYLD_LIBRARY_PATH': os.path.join(emulator_root, 'lib64', 'qt', 'lib'), 47 emulator_bin = os.path.join(emulator_path, 'qemu-system-armel') 51 os.path.join(aosp_path, 'system-qemu.img'), '-kernel', 52 os.path.join(aosp_path, 'kernel-ranchu'), '-ramdisk', [all …]
|
/external/vulkan-validation-layers/build-android/ |
D | build.py | 29 src_file = os.path.join(src_dir, file_name) 30 dst_file = os.path.join(dst_dir, file_name) 42 parent_dir = os.path.normpath(os.path.join(dst_dir, '..')) 98 type=os.path.realpath, default=os.path.join(THIS_DIR, 'out')) 134 ndk_dir = os.path.join(THIS_DIR, '../../../prebuilts/toolchain') 136 ndk_build = os.path.join(ndk_dir, 'ndk-build') 137 platforms_root = os.path.join(ndk_dir, 'platforms') 138 toolchains_root = os.path.join(ndk_dir, 'toolchains') 148 obj_out = os.path.join(THIS_DIR, stl, 'obj') 149 lib_out = os.path.join(THIS_DIR, 'jniLibs') [all …]
|
/external/clang/ |
D | build.py | 57 return os.path.realpath(os.path.join(THIS_DIR, '../..', *args)) 65 return os.path.join(top_out, *args) 69 return '.'.join([version.major, version.minor]) 73 return '.'.join([version.major, version.minor, version.patch]) 79 logger().info('check_call: %s', ' '.join(cmd)) 195 install_dir = os.path.join(install_host_dir, package_name) 204 version_file_path = os.path.join(install_dir, 'AndroidVersion.txt') 210 package_path = os.path.join(dist_dir, tarball_name) + '.tar.bz2' 287 install_path = os.path.join(install_dir, dirname) 291 built_path = os.path.join(build_dir, 'host', host, built_file) [all …]
|
/external/rust/crates/same-file/src/ |
D | lib.rs | 428 let path = tmpdir.join("rust-walkdir").join(count.to_string()); in new() 498 File::create(dir.join("a")).unwrap(); in same_file_trivial() 499 assert!(is_same_file(dir.join("a"), dir.join("a")).unwrap()); in same_file_trivial() 507 fs::create_dir(dir.join("a")).unwrap(); in same_dir_trivial() 508 assert!(is_same_file(dir.join("a"), dir.join("a")).unwrap()); in same_dir_trivial() 516 File::create(dir.join("a")).unwrap(); in not_same_file_trivial() 517 File::create(dir.join("b")).unwrap(); in not_same_file_trivial() 518 assert!(!is_same_file(dir.join("a"), dir.join("b")).unwrap()); in not_same_file_trivial() 526 fs::create_dir(dir.join("a")).unwrap(); in not_same_dir_trivial() 527 fs::create_dir(dir.join("b")).unwrap(); in not_same_dir_trivial() [all …]
|
/external/capstone/bindings/python/ |
D | setup.py | 24 LIBS_DIR = os.path.join(ROOT_DIR, 'capstone', 'lib') 25 HEADERS_DIR = os.path.join(ROOT_DIR, 'capstone', 'include') 26 SRC_DIR = os.path.join(ROOT_DIR, 'src') 27 BUILD_DIR = SRC_DIR if os.path.exists(SRC_DIR) else os.path.join(ROOT_DIR, '../..') 31 with open(os.path.join(BUILD_DIR, 'pkgconfig.mk')) as fp: 88 shutil.copytree(os.path.join(BUILD_DIR, "arch"), os.path.join(SRC_DIR, "arch")) 89 shutil.copytree(os.path.join(BUILD_DIR, "include"), os.path.join(SRC_DIR, "include")) 91 src.extend(glob.glob(os.path.join(BUILD_DIR, "*.[ch]"))) 92 src.extend(glob.glob(os.path.join(BUILD_DIR, "*.mk"))) 94 src.extend(glob.glob(os.path.join(BUILD_DIR, "Makefile"))) [all …]
|
/external/yapf/yapftests/ |
D | file_resources_test.py | 48 test_file = os.path.join(self.test_tmpdir, 'file.py') 54 style_file = os.path.join(self.test_tmpdir, '.style.yapf') 57 test_filename = os.path.join(self.test_tmpdir, 'file.py') 61 test_filename = os.path.join(self.test_tmpdir, 'dir1', 'file.py') 82 fullpath = os.path.normpath(os.path.join(self.test_tmpdir, name)) 89 file1 = os.path.join(tdir1, 'testfile1.py') 90 file2 = os.path.join(tdir2, 'testfile2.py') 103 file1 = os.path.join(tdir1, 'testfile1.py') 104 file2 = os.path.join(tdir2, 'testfile2.py') 119 os.path.join(tdir1, 'testfile1.py'), [all …]
|
/external/skia/infra/bots/recipe_modules/flavor/ |
D | default.py | 45 resource_dir=self.m.path['start_dir'].join('skia', 'resources'), 46 images_dir=self.m.path['start_dir'].join('skimage'), 47 lotties_dir=self.m.path['start_dir'].join('lottie-samples'), 48 skp_dir=self.m.path['start_dir'].join('skp'), 49 svg_dir=self.m.path['start_dir'].join('svg'), 50 mskp_dir=self.m.path['start_dir'].join('mskp'), 52 texttraces_dir=self.m.path['start_dir'].join('text_blob_traces')) 57 return self.m.path.join(*args) 124 app = self.device_dirs.bin_dir.join(cmd[0]) 131 clang_linux = str(workdir.join('clang_linux')) [all …]
|
/external/fonttools/Tests/ufoLib/ |
D | UFOConversion_test.py | 32 testdata = os.path.join(os.path.dirname(__file__), "testdata") 33 return os.path.join(testdata, fileName) 37 metainfoPath1 = os.path.join(path1, "metainfo.plist") 38 fontinfoPath1 = os.path.join(path1, "fontinfo.plist") 39 kerningPath1 = os.path.join(path1, "kerning.plist") 40 groupsPath1 = os.path.join(path1, "groups.plist") 41 libPath1 = os.path.join(path1, "lib.plist") 42 featuresPath1 = os.path.join(path1, "features.plist") 43 glyphsPath1 = os.path.join(path1, "glyphs") 44 glyphsPath1_contents = os.path.join(glyphsPath1, "contents.plist") [all …]
|
/external/skqp/tools/skp/ |
D | webpages_playback.py | 74 LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR = os.path.join( 99 CHROMIUM_PAGE_SETS_PATH = os.path.join('tools', 'perf', 'page_sets') 133 self._chrome_page_sets_path = os.path.join(parse_options.chrome_src_path, 150 self._telemetry_binaries_dir = os.path.join(parse_options.chrome_src_path, 152 self._catapult_dir = os.path.join(parse_options.chrome_src_path, 155 self._local_skp_dir = os.path.join( 157 self._local_record_webpages_archive_dir = os.path.join( 168 page_sets_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 170 ps = [os.path.join(page_sets_dir, page_set) 172 if not os.path.isdir(os.path.join(page_sets_dir, page_set)) and [all …]
|