/external/brotli/python/tests/ |
_test_utils.py | 12 project_dir = os.path.abspath(os.path.join(__file__, '..', '..', '..')) 13 src_dir = os.path.join(project_dir, 'python') 14 test_dir = os.path.join(project_dir, 'tests') 17 bro_path = os.path.join(src_dir, 'bro.py') 24 build_dir = os.path.join(project_dir, 'bin', platform_lib_name) 35 TESTDATA_DIR = os.path.join(test_dir, 'testdata') 45 TESTDATA_PATHS = [os.path.join(TESTDATA_DIR, f) for f in TESTDATA_FILES] 48 os.path.join(TESTDATA_DIR, '*.compressed')) 54 return os.path.join(TEMP_DIR, os.path.basename(filename + '.bro')) 58 return os.path.join(TEMP_DIR, os.path.basename(filename + '.unbro') [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowPaint.java | 21 private Paint.Join join; field in class:ShadowPaint 99 public void setStrokeJoin(Paint.Join join) { 100 this.join = join; 104 public Paint.Join getStrokeJoin() { 105 return join; 174 * @return join 176 public Paint.Join getJoin() [all...] |
/external/vixl/tools/ |
config.py | 31 dir_root = os.path.abspath(os.path.join(dir_tools, '..')) 32 dir_build = os.path.join(dir_root, 'obj') 33 dir_build_latest = os.path.join(dir_build, 'latest') 34 dir_src_vixl = os.path.join(dir_root, 'src') 35 dir_tests = os.path.join(dir_root, 'test') 36 dir_aarch64_benchmarks = os.path.join(dir_root, 'benchmarks', 'aarch64') 37 dir_aarch32_benchmarks = os.path.join(dir_root, 'benchmarks', 'aarch32') 38 dir_aarch64_examples = os.path.join(dir_root, 'examples', 'aarch64') 39 dir_aarch32_examples = os.path.join(dir_root, 'examples', 'aarch32') 40 dir_aarch64_traces = os.path.join(dir_tests, 'aarch64', 'traces' [all...] |
/external/python/cpython3/Lib/distutils/tests/ |
test_build_py.py | 21 f = open(os.path.join(sources, "__init__.py"), "w") 26 f = open(os.path.join(sources, "README.txt"), "w") 37 dist.script_name = os.path.join(sources, "setup.py") 56 pkgdest = os.path.join(destination, "pkg") 58 pycache_dir = os.path.join(pkgdest, "__pycache__") 71 open(os.path.join(sources, "__init__.py"), "w").close() 73 testdir = os.path.join(sources, "doc") 75 open(os.path.join(testdir, "testfile"), "w").close() 82 dist.script_name = os.path.join(sources, "setup.py") 104 found = os.listdir(os.path.join(cmd.build_lib, '__pycache__') [all...] |
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
dependency_manager_util_unittest.py | 25 self.sub_dir = os.path.join(self.tmp_dir, 'sub_dir') 28 self.read_only_path = (os.path.join(self.tmp_dir, 'read_only')) 33 self.writable_path = (os.path.join(self.tmp_dir, 'writable')) 38 self.executable_path = (os.path.join(self.tmp_dir, 'executable')) 43 self.sub_read_only_path = (os.path.join(self.sub_dir, 'read_only')) 48 self.sub_writable_path = (os.path.join(self.sub_dir, 'writable')) 53 self.sub_executable_path = (os.path.join(self.sub_dir, 'executable')) 68 sub_dir = os.path.join(top_dir, 'sub_dir') 69 read_only_path = (os.path.join(top_dir, 'read_only')) 70 writable_path = (os.path.join(top_dir, 'writable') [all...] |
/build/blueprint/pathtools/ |
glob_test.go | 99 pattern: filepath.Join(pwd, "testdata/c/*/*.ext"), 101 filepath.Join(pwd, "testdata/c/f/f.ext"), 102 filepath.Join(pwd, "testdata/c/g/g.ext"), 105 filepath.Join(pwd, "testdata/c"), 106 filepath.Join(pwd, "testdata/c/f"), 107 filepath.Join(pwd, "testdata/c/g"), 108 filepath.Join(pwd, "testdata/c/h"), 155 pattern: filepath.Join(pwd, "testdata/**/*.ext"), 157 filepath.Join(pwd, "testdata/d.ext"), 158 filepath.Join(pwd, "testdata/e.ext") [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_shutil.py | 60 path = os.path.join(*path)
87 self.childpath = os.path.join(TESTFN, 'a')
154 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
156 write_data(os.path.join(src_dir, 'test.txt'), '123')
158 os.mkdir(os.path.join(src_dir, 'test_dir'))
159 write_data(os.path.join(src_dir, 'test_dir', 'test.txt'), '456')
163 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
164 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
165 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
167 actual = read_data(os.path.join(dst_dir, 'test.txt')) [all...] |
/external/clang/ |
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...] |
/build/soong/cc/config/ |
x86_windows_host.go | 126 pctx.StaticVariable("WindowsCflags", strings.Join(windowsCflags, " ")) 127 pctx.StaticVariable("WindowsLdflags", strings.Join(windowsLdflags, " ")) 129 pctx.StaticVariable("WindowsClangCflags", strings.Join(windowsClangCflags, " ")) 130 pctx.StaticVariable("WindowsClangLdflags", strings.Join(windowsClangLdflags, " ")) 131 pctx.StaticVariable("WindowsClangCppflags", strings.Join(windowsClangCppflags, " ")) 133 pctx.StaticVariable("WindowsX86Cflags", strings.Join(windowsX86Cflags, " ")) 134 pctx.StaticVariable("WindowsX8664Cflags", strings.Join(windowsX8664Cflags, " ")) 135 pctx.StaticVariable("WindowsX86Ldflags", strings.Join(windowsX86Ldflags, " ")) 136 pctx.StaticVariable("WindowsX8664Ldflags", strings.Join(windowsX8664Ldflags, " ")) 139 strings.Join(ClangFilterUnknownCflags(windowsX86Cflags), " ") [all...] |
/compatibility/cdd/13_contact-us/ |
13_0_intro.md | 3 You can join the [android-compatibility forum](https://groups.google.com/forum/#!forum/android-compatibility)
|
/cts/tests/tests/net/src/android/net/rtp/cts/ |
AudioGroupTest.java | 99 mStreamA.join(mGroup); 102 mStreamB.join(mGroup); 105 mStreamA.join(null); 111 mStreamA.join(mGroup); 122 mStreamA.join(mGroup); 123 mStreamB.join(mGroup); 133 mStreamA.join(mGroup); 136 mStreamB.join(mGroup); 139 mStreamA.join(mGroup); 144 mStreamA.join(mGroup) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/PyEfiCompressor/ |
setup.py | 32 os.path.join(BaseToolsDir, 'Source', 'C', 'Common', 'Decompress.c'),
36 os.path.join(BaseToolsDir, 'Source', 'C', 'Include'),
37 os.path.join(BaseToolsDir, 'Source', 'C', 'Include', 'Ia32'),
38 os.path.join(BaseToolsDir, 'Source', 'C', 'Common')
|
/external/autotest/client/bin/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, ".."))
|
/external/autotest/client/bin/net/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
|
/external/autotest/client/bin/result_tools/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "../.."))
|
/external/autotest/client/common_lib/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, ".."))
|
/external/autotest/client/common_lib/cros/bluetooth/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "..", "..", ".."))
|
/external/autotest/client/common_lib/cros/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
|
/external/autotest/client/common_lib/cros/network/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "..", "..", ".."))
|
/external/autotest/client/common_lib/cros/tendo/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, '..', '..', '..'))
|
/external/autotest/client/common_lib/hosts/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
|
/external/autotest/client/common_lib/perf_expectations/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
|
/external/autotest/client/cros/faft/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, os.pardir, os.pardir))
|
/external/autotest/client/cros/scripts/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
|
/external/autotest/client/deps/iwcap/ |
common.py | 3 client_dir = os.path.abspath(os.path.join(dirname, "..", ".."))
|