/external/guava/guava-tests/test/com/google/common/base/ |
JoinerTest.java | 68 J.join(ITERABLE_NULL); 73 J.join(ITERABLE_1_NULL_2); 79 J.join(ITERABLE_NULL.iterator()); 84 J.join(ITERABLE_1_NULL_2.iterator()); 127 assertEquals("", joiner.join(set)); 128 assertEquals("", joiner.join(set.iterator())); 131 assertEquals("", joiner.join(array)); 180 assertEquals(expected, joiner.join(parts)); 181 assertEquals(expected, joiner.join(parts.iterator())); 192 assertEquals(expected, joiner.join(partsArray)) [all...] |
/build/soong/cc/config/ |
x86_linux_host.go | 132 pctx.StaticVariable("LinuxCflags", strings.Join(linuxCflags, " ")) 133 pctx.StaticVariable("LinuxLdflags", strings.Join(linuxLdflags, " ")) 135 pctx.StaticVariable("LinuxClangCflags", strings.Join(linuxClangCflags, " ")) 136 pctx.StaticVariable("LinuxClangLdflags", strings.Join(linuxClangLdflags, " ")) 137 pctx.StaticVariable("LinuxClangCppflags", strings.Join(linuxClangCppflags, " ")) 140 pctx.StaticVariable("LinuxX86Cflags", strings.Join(linuxX86Cflags, " ")) 141 pctx.StaticVariable("LinuxX8664Cflags", strings.Join(linuxX8664Cflags, " ")) 142 pctx.StaticVariable("LinuxX86Ldflags", strings.Join(linuxX86Ldflags, " ")) 143 pctx.StaticVariable("LinuxX8664Ldflags", strings.Join(linuxX8664Ldflags, " ")) 146 strings.Join(ClangFilterUnknownCflags(linuxX86Cflags), " ") [all...] |
arm_device.go | 189 pctx.StaticVariable("ArmToolchainCflags", strings.Join(armToolchainCflags, " ")) 190 pctx.StaticVariable("ArmCflags", strings.Join(armCflags, " ")) 191 pctx.StaticVariable("ArmLdflags", strings.Join(armLdflags, " ")) 192 pctx.StaticVariable("ArmCppflags", strings.Join(armCppflags, " ")) 198 pctx.StaticVariable("ArmArmCflags", strings.Join(armArmCflags, " ")) 199 pctx.StaticVariable("ArmThumbCflags", strings.Join(armThumbCflags, " ")) 202 pctx.StaticVariable("ArmArmv7ACflags", strings.Join(armArchVariantCflags["armv7-a"], " ")) 203 pctx.StaticVariable("ArmArmv7ANeonCflags", strings.Join(armArchVariantCflags["armv7-a-neon"], " ")) 204 pctx.StaticVariable("ArmArmv8ACflags", strings.Join(armArchVariantCflags["armv8-a"], " ")) 207 pctx.StaticVariable("ArmGenericCflags", strings.Join(armCpuVariantCflags[""], " ") [all...] |
/device/linaro/bootloader/edk2/BaseTools/Tests/ |
TestTools.py | 29 BaseToolsDir = os.path.realpath(os.path.join(TestsDir, '..'))
30 CSourceDir = os.path.join(BaseToolsDir, 'Source', 'C')
31 PythonSourceDir = os.path.join(BaseToolsDir, 'Source', 'Python')
32 TestTempDir = os.path.join(TestsDir, 'TestTempDir')
53 return [ os.path.join(BaseToolsDir, 'Bin', sys.platform.title()) ]
59 os.path.join(BaseToolsDir, 'Bin', uname),
60 os.path.join(BaseToolsDir, 'BinWrappers', uname),
61 os.path.join(BaseToolsDir, 'BinWrappers', 'PosixLike')
71 dirItem = os.path.join(dir, dirItem)
104 bin = os.path.join(binPath, toolName) [all...] |
/external/skia/infra/bots/assets/win_toolchain/ |
create.py | 61 with utils.chdir(os.path.join(chrome_path, 'src')): 64 'python', os.path.join('build', 'find_depot_tools.py')]).rstrip() 66 vs_toolchain_py = os.path.join('build', 'vs_toolchain.py') 74 win_toolchain_utils.abstract(os.path.join('build', 'win_toolchain.json'), 78 build = os.path.join(os.getcwd(), 'build') 79 dst_build = os.path.join(target_dir, 'src', 'build') 82 shutil.copyfile(os.path.join(build, f), os.path.join(dst_build, f)) 84 shutil.copytree(os.path.join(os.getcwd(), 'tools', 'gyp', 'pylib'), 85 os.path.join(target_dir, 'src', 'tools', 'gyp', 'pylib') [all...] |
/external/skqp/infra/bots/assets/win_toolchain/ |
create.py | 61 with utils.chdir(os.path.join(chrome_path, 'src')): 64 'python', os.path.join('build', 'find_depot_tools.py')]).rstrip() 66 vs_toolchain_py = os.path.join('build', 'vs_toolchain.py') 74 win_toolchain_utils.abstract(os.path.join('build', 'win_toolchain.json'), 78 build = os.path.join(os.getcwd(), 'build') 79 dst_build = os.path.join(target_dir, 'src', 'build') 82 shutil.copyfile(os.path.join(build, f), os.path.join(dst_build, f)) 84 shutil.copytree(os.path.join(os.getcwd(), 'tools', 'gyp', 'pylib'), 85 os.path.join(target_dir, 'src', 'tools', 'gyp', 'pylib') [all...] |
/development/testrunner/coverage/ |
coverage.py | 43 _EMMA_JAR = os.path.join("external", "emma", "lib", "emma.jar") 48 _CORE_TARGET_PATH = os.path.join("development", "testrunner", 52 _VENDOR_TARGET_PATH = os.path.join("vendor", "*", "tests", "testinfo", 56 _TARGET_INTERMEDIATES_BASE_PATH = os.path.join("target", "common", 62 self._output_root_path = os.path.join(self._out_path, 64 self._emma_jar_path = os.path.join(self._root_path, self._EMMA_JAR) 93 output_path = os.path.join(self._out_path, 100 coverage_local_path = os.path.join(output_path, 104 report_path = os.path.join(output_path, 150 input_metadata = os.path.join(self._GetBuildIntermediatePath(target) [all...] |
/external/v8/tools/clang/scripts/ |
package.py | 20 CHROMIUM_DIR = os.path.abspath(os.path.join(THIS_DIR, '..', '..', '..')) 21 THIRD_PARTY_DIR = os.path.join(THIS_DIR, '..', '..', '..', 'third_party') 22 LLVM_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm') 23 LLVM_BOOTSTRAP_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm-bootstrap') 24 LLVM_BOOTSTRAP_INSTALL_DIR = os.path.join(THIRD_PARTY_DIR, 26 LLVM_BUILD_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm-build') 27 LLVM_RELEASE_DIR = os.path.join(LLVM_BUILD_DIR, 'Release+Asserts') 28 LLVM_LTO_GOLD_PLUGIN_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm-lto-gold-plugin') 29 STAMP_FILE = os.path.join(LLVM_BUILD_DIR, 'cr_build_revision') 63 rev_cmd = [sys.executable, os.path.join(THIS_DIR, 'update.py') [all...] |
update.py | 43 CHROMIUM_DIR = os.path.abspath(os.path.join(THIS_DIR, '..', '..', '..')) 44 THIRD_PARTY_DIR = os.path.join(CHROMIUM_DIR, 'third_party') 45 LLVM_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm') 46 LLVM_BOOTSTRAP_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm-bootstrap') 47 LLVM_BOOTSTRAP_INSTALL_DIR = os.path.join(THIRD_PARTY_DIR, 49 LLVM_LTO_GOLD_PLUGIN_DIR = os.path.join(THIRD_PARTY_DIR, 'llvm-lto-gold-plugin') 50 CHROME_TOOLS_SHIM_DIR = os.path.join(LLVM_DIR, 'tools', 'chrometools') 51 LLVM_BUILD_DIR = os.path.join(CHROMIUM_DIR, 'third_party', 'llvm-build', 53 COMPILER_RT_BUILD_DIR = os.path.join(LLVM_BUILD_DIR, 'compiler-rt') 54 CLANG_DIR = os.path.join(LLVM_DIR, 'tools', 'clang' [all...] |
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
JoinerTest.java | 66 J.join(ITERABLE_NULL); 71 J.join(ITERABLE_1_NULL_2); 77 J.join(ITERABLE_NULL.iterator()); 82 J.join(ITERABLE_1_NULL_2.iterator()); 125 assertEquals("", joiner.join(set)); 126 assertEquals("", joiner.join(set.iterator())); 129 assertEquals("", joiner.join(array)); 178 assertEquals(expected, joiner.join(parts)); 179 assertEquals(expected, joiner.join(parts.iterator())); 190 assertEquals(expected, joiner.join(partsArray)) [all...] |
/external/flatbuffers/tests/ |
phpUnionVectorTest.php | 3 require join(DIRECTORY_SEPARATOR, array(dirname(dirname(__FILE__)), "php", "Constants.php")); 4 require join(DIRECTORY_SEPARATOR, array(dirname(dirname(__FILE__)), "php", "ByteBuffer.php")); 5 require join(DIRECTORY_SEPARATOR, array(dirname(dirname(__FILE__)), "php", "FlatbufferBuilder.php")); 6 require join(DIRECTORY_SEPARATOR, array(dirname(dirname(__FILE__)), "php", "Table.php")); 7 require join(DIRECTORY_SEPARATOR, array(dirname(dirname(__FILE__)), "php", "Struct.php")); 9 require join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), "php", 'Attacker.php')); 10 require join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), "php", 'BookReader.php')); 11 require join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), "php", 'Character.php')); 12 require join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), "php", 'Movie.php'));
|
/external/swiftshader/third_party/LLVM/test/lib/ |
llvm2cpp.exp | 11 set path [file join $objdir $subdir]
12 set llc [file join $llvmtoolsdir llc ]
13 set llvmas [file join $llvmtoolsdir llvm-as ]
14 set llvmdis [file join $llvmtoolsdir llvm-dis ]
29 set generated [file join Output $filename.cpp]
30 set executable [file join Output $filename.exe]
31 set output [file join Output $filename.gen]
32 set assembly [file join Output $filename.asm]
34 set bytecode [file join Output $filename.bc]
|
/external/toolchain-utils/android_bench_suite/ |
apply_patches.py | 20 skia_dir = os.path.join(config.android_home, config.bench_dict['Skia']) 26 skia_patch = os.path.join( 42 autotest_dir = os.path.join(config.android_home, config.autotest_dir) 43 autotest_patch = os.path.join( 45 dex2oat_dir = os.path.join(autotest_dir, 'server/site_tests/android_Dex2oat') 46 panorama_dir = os.path.join(autotest_dir, 60 panorama_dir = os.path.join(config.android_home, 62 panorama_patch = os.path.join( 84 synthmark_patch = os.path.join(
|
/external/owasp/sanitizer/tools/ |
cut_release.py | 23 trunk_directory_path = os.path.realpath(os.path.join( 26 maven_directory_path = os.path.realpath(os.path.join( 33 maven_metadata_path = os.path.join( 36 version_template_directory_path = os.path.join( 39 jar_path = os.path.join( 44 src_jar_path = os.path.join( 49 doc_jar_path = os.path.join( 78 return "".join([inner_text(child) for child in node.childNodes]) 101 dest_path = os.path.join( 110 os.path.join(src_path, child), dest_path [all...] |
/external/python/cpython2/Lib/distutils/tests/ |
test_build_py.py | 22 f = open(os.path.join(sources, "__init__.py"), "w") 27 f = open(os.path.join(sources, "README.txt"), "w") 38 dist.script_name = os.path.join(sources, "setup.py") 58 pkgdest = os.path.join(destination, "pkg") 74 open(os.path.join(sources, "__init__.py"), "w").close() 76 testdir = os.path.join(sources, "doc") 78 open(os.path.join(testdir, "testfile"), "w").close() 89 dist.script_name = os.path.join(sources, "setup.py") 108 pkg_dir = os.path.join(sources, "pkg") 111 open(os.path.join(pkg_dir, "__init__.py"), "w").close( [all...] |
/external/skia/infra/bots/recipes/ |
skpbench.py | 43 app = api.vars.skia_out.join(api.vars.configuration, 'skpbench') 46 skpbench_dir = api.vars.slave_dir.join('skia', 'tools', 'skpbench') 47 table = api.path.join(api.vars.swarming_out_dir, 'table') 55 api.path.join(api.vars.android_bin_dir, 'skpbench'), 66 api.path.join(api.vars.android_data_dir, 'skps/desk_*svg.skp'), 67 api.path.join(api.vars.android_data_dir, 'skps/desk_chalkboard.skp')] 70 api.path.join(api.vars.android_data_dir, 'skps')] 73 script=skpbench_dir.join('skpbench.py'), 94 json_path = api.path.join( 109 script=skpbench_dir.join('skiaperf.py') [all...] |
/external/skqp/infra/bots/recipes/ |
skpbench.py | 43 app = api.vars.skia_out.join(api.vars.configuration, 'skpbench') 46 skpbench_dir = api.vars.slave_dir.join('skia', 'tools', 'skpbench') 47 table = api.path.join(api.vars.swarming_out_dir, 'table') 55 api.path.join(api.vars.android_bin_dir, 'skpbench'), 66 api.path.join(api.vars.android_data_dir, 'skps/desk_*svg.skp'), 67 api.path.join(api.vars.android_data_dir, 'skps/desk_chalkboard.skp')] 70 api.path.join(api.vars.android_data_dir, 'skps')] 73 script=skpbench_dir.join('skpbench.py'), 94 json_path = api.path.join( 109 script=skpbench_dir.join('skiaperf.py') [all...] |
/external/python/cpython3/Lib/test/ |
test_ntpath.py | 125 tester('ntpath.join("")', '') 126 tester('ntpath.join("", "", "")', '') 127 tester('ntpath.join("a")', 'a') 128 tester('ntpath.join("/a")', '/a') 129 tester('ntpath.join("\\a")', '\\a') 130 tester('ntpath.join("a:")', 'a:') 131 tester('ntpath.join("a:", "\\b")', 'a:\\b') 132 tester('ntpath.join("a", "\\b")', '\\b') 133 tester('ntpath.join("a", "b", "c")', 'a\\b\\c') 134 tester('ntpath.join("a\\", "b", "c")', 'a\\b\\c' [all...] |
test_glob.py | 14 return os.path.normpath(os.path.join(self.tempdir, *parts)) 17 return [os.path.join(self.tempdir, *parts) for parts in tuples] 40 os.symlink(os.path.join('a', 'bcd'), self.norm('sym3')) 49 pattern = os.path.join(*parts) 50 p = os.path.join(self.tempdir, pattern) 73 res = glob.glob(os.path.join(os.curdir, '*')) 78 res = glob.glob(os.path.join(os.fsencode(os.curdir), b'*')) 247 join = os.path.join 248 eq(glob.glob('**', recursive=True), [join(*i) for i in full] [all...] |
/external/python/cpython2/Lib/test/ |
test_shutil.py | 61 path = os.path.join(*path) 89 self.childpath = os.path.join(TESTFN, 'a') 156 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination') 158 write_data(os.path.join(src_dir, 'test.txt'), '123') 160 os.mkdir(os.path.join(src_dir, 'test_dir')) 161 write_data(os.path.join(src_dir, 'test_dir', 'test.txt'), '456') 165 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt'))) 166 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir'))) 167 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir', 169 actual = read_data(os.path.join(dst_dir, 'test.txt') [all...] |
/development/vndk/tools/sourcedr/sourcedr/tests/ |
test_map.py | 11 TESTDATA_DIR = os.path.join(os.path.dirname(__file__), 'testdata') 15 MAP_TESTDATA_DIR = os.path.join(TESTDATA_DIR, 'map') 16 DEP_PATH = os.path.join(MAP_TESTDATA_DIR, 'build_dep.json') 17 REVIEW_DB_PATH = os.path.join(MAP_TESTDATA_DIR, 'data.json') 18 NINJA_PATH = os.path.join(MAP_TESTDATA_DIR, 'build.ninja') 19 NINJA_DEP_PATH = os.path.join(MAP_TESTDATA_DIR, 'ninja_deps')
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
test_file_util.py | 25 self.source = os.path.join(tmp_dir, 'f1')
26 self.target = os.path.join(tmp_dir, 'f2')
27 self.target_dir = os.path.join(tmp_dir, 'd1')
64 foo = os.path.join(dir, 'foo')
71 foo = os.path.join(src_dir, 'foo')
75 self.assertTrue(os.path.exists(os.path.join(dst_dir, 'foo')))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
linktree.py | 38 linkname = os.path.join(newtree, link)
40 os.symlink(os.path.join(os.pardir, oldtree), linkname)
59 oldname = os.path.join(old, name)
60 linkname = os.path.join(link, name)
61 newname = os.path.join(new, name)
73 linkname = os.path.join(os.pardir,
|
/external/autotest/client/site_tests/camera_HAL3/ |
camera_HAL3.py | 23 media_profiles_path = os.path.join('vendor', 'etc', 'media_profiles.xml') 30 self.dep_dir = os.path.join(self.autodir, 'deps', self.dep) 41 cmd = [ os.path.join(self.dep_dir, 'bin', self.test_binary) ] 43 ' '.join(['android-sh', '-c', '\"cat', 54 cmd.append('--recording_params=' + ','.join(recording_params)) 58 utils.system(' '.join(cmd), timeout=self.timeout)
|
/external/python/cpython2/Tools/scripts/ |
linktree.py | 38 linkname = os.path.join(newtree, link) 40 os.symlink(os.path.join(os.pardir, oldtree), linkname) 59 oldname = os.path.join(old, name) 60 linkname = os.path.join(link, name) 61 newname = os.path.join(new, name) 73 linkname = os.path.join(os.pardir,
|