/external/testng/src/test/java/org/testng/internal/ |
UtilsTest.java | 10 import static org.testng.internal.Utils.join; 32 assertEquals("", join(emptyList, ",")); 38 assertEquals("one,two", Utils.join(twoStrings, ",")); 44 assertEquals("", Utils.join(emptyList, ","));
|
/external/toolchain-utils/android_bench_suite/ |
discard_patches.py | 26 skia_dir = os.path.join(config.android_home, config.bench_dict['Skia']) 31 autotest_dir = os.path.join(config.android_home, config.autotest_dir) 36 panorama_dir = os.path.join(config.android_home, 46 os.path.join(config.android_home, synthmark_dir)])
|
/external/toolchain-utils/binary_search_tool/sysroot_wrapper/ |
testing_test.py | 18 os.path.join(base_path, 'base/base.cpu.o'), os.path.join( 19 base_path, 'base/base.version.o'), os.path.join(base_path, 29 cmd = ['grep', test_file, os.path.join(bisect_dir, 'BAD_SET')]
|
/external/toolchain-utils/cros_utils/ |
misc_test.py | 30 expected_new_env = '%s=%r' % (var, ' '.join([added_use_flags, use_flags])) 31 self.assertEqual(new_env_string, ' '.join([env_string, expected_new_env])) 46 expected_new_env = '%s=%r' % (var, ' '.join([use_flags, added_use_flags])) 47 self.assertEqual(new_env_string, ' '.join([env_string, expected_new_env]))
|
/external/valgrind/drd/tests/ |
fp_race_xml.vgtest | 2 vgopts: --read-var-info=yes --xml=yes --xml-fd=2 --trace-fork-join=yes
|
std_atomic.cpp | 50 throw std::string("Thread::join(): failed to join."); 53 throw std::string("Thread::join(): failed to join.");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
BaseViewRuleTest.java | 37 assertEquals("foo", BaseViewRule.join('|', Arrays.asList("foo"))); 38 assertEquals("", BaseViewRule.join('|', Collections.<String>emptyList())); 39 assertEquals("foo,bar", BaseViewRule.join(',', Arrays.asList("foo", "bar"))); 40 assertEquals("foo|bar", BaseViewRule.join('|', Arrays.asList("foo", "bar")));
|
/bionic/libc/tools/ |
symbols.py | 59 lib_dir = os.path.join(out_dir, 'obj') 63 static_lib_dir = os.path.join( 68 os.path.join(static_lib_dir, f), 75 lib_dir = os.path.join(out_dir, 'system/lib64') 77 lib_dir = os.path.join(out_dir, 'system/lib') 81 results |= GetFromElf(os.path.join(lib_dir, f)) 89 results |= GetFromElf(glob.glob(os.path.join(lib_dir, f))[-1])
|
/external/skia/platform_tools/android/tradefed/ |
upload_dm_results.py | 24 sys.path.insert(0, os.path.join(current_dir, "../../../common/py/utils")) 35 if not os.path.isfile(os.path.join(dm_dir, 'dm.json')): 40 shutil.move(os.path.join(dm_dir, 'dm.json'), 41 os.path.join(tmp, 'dm.json')) 55 summary_dest_dir = '/'.join(['dm-json-v1', 72 shutil.move(os.path.join(tmp, 'dm.json'), 73 os.path.join(dm_dir, 'dm.json'))
|
/external/skqp/platform_tools/android/tradefed/ |
upload_dm_results.py | 24 sys.path.insert(0, os.path.join(current_dir, "../../../common/py/utils")) 35 if not os.path.isfile(os.path.join(dm_dir, 'dm.json')): 40 shutil.move(os.path.join(dm_dir, 'dm.json'), 41 os.path.join(tmp, 'dm.json')) 55 summary_dest_dir = '/'.join(['dm-json-v1', 72 shutil.move(os.path.join(tmp, 'dm.json'), 73 os.path.join(dm_dir, 'dm.json'))
|
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/ |
atrace_agent_unittest.py | 30 TEST_DIR = os.path.join(os.path.dirname(__file__), os.pardir, 'test_data') 31 ATRACE_DATA = os.path.join(TEST_DIR, 'atrace_data') 32 ATRACE_DATA_RAW = os.path.join(TEST_DIR, 'atrace_data_raw') 33 ATRACE_DATA_STRIPPED = os.path.join(TEST_DIR, 'atrace_data_stripped') 34 ATRACE_PROCFS_DUMP = os.path.join(TEST_DIR, 'atrace_procfs_dump') 35 ATRACE_EXTRACTED_TGIDS = os.path.join(TEST_DIR, 'atrace_extracted_tgids') 36 ATRACE_MISSING_TGIDS = os.path.join(TEST_DIR, 'atrace_missing_tgids') 37 ATRACE_FIXED_TGIDS = os.path.join(TEST_DIR, 'atrace_fixed_tgids') 91 self.assertEqual(' '.join(TRACE_ARGS), ' '.join(tracer_args) [all...] |
/external/clang/tools/scan-build-py/tests/unit/ |
test_intercept.py | 26 parent = os.path.join(os.sep, 'home', 'me') 27 current = os.path.join(parent, 'project') 33 self.assertEqual(os.path.join(current, 'file.c'), test('file.c')) 34 self.assertEqual(os.path.join(current, 'file.c'), test('./file.c')) 35 self.assertEqual(os.path.join(parent, 'file.c'), test('../file.c')) 36 self.assertEqual(os.path.join(current, 'file.c'), 37 test(os.path.join(current, 'file.c'))) 50 handle.write('\n'.join(lines)) 55 filename = os.path.join(dest_dir, 'csrutil') 60 filename = os.path.join(dest_dir, 'sestatus' [all...] |
/external/llvm/unittests/ADT/ |
IntEqClassesTest.cpp | 20 ec.join(0, 1); 21 ec.join(3, 2); 22 ec.join(4, 5); 23 ec.join(7, 6); 36 // join two non-leaders. 37 ec.join(1, 3); 50 // join two leaders. 51 ec.join(4, 8); 64 // join mixed. 65 ec.join(9, 1) [all...] |
/external/swiftshader/third_party/LLVM/unittests/ADT/ |
IntEqClassesTest.cpp | 20 ec.join(0, 1); 21 ec.join(3, 2); 22 ec.join(4, 5); 23 ec.join(7, 6); 36 // join two non-leaders. 37 ec.join(1, 3); 50 // join two leaders. 51 ec.join(4, 8); 64 // join mixed. 65 ec.join(9, 1) [all...] |
/external/webrtc/webrtc/base/ |
thread_checker_unittest.cc | 63 // New method. Needed since Thread::Join is protected, and it is called by 65 void Join() { 66 Thread::Join(); 87 // New method. Needed since Thread::Join is protected, and it is called by 89 void Join() { 90 Thread::Join(); 122 delete_on_thread.Join(); 135 call_on_thread.Join(); 149 call_on_thread.Join(); 174 call_on_thread.Join(); [all...] |
/build/soong/cc/config/ |
arm64_device.go | 104 pctx.StaticVariable("Arm64Cflags", strings.Join(arm64Cflags, " ")) 105 pctx.StaticVariable("Arm64Ldflags", strings.Join(arm64Ldflags, " ")) 106 pctx.StaticVariable("Arm64Cppflags", strings.Join(arm64Cppflags, " ")) 109 pctx.StaticVariable("Arm64ClangCflags", strings.Join(ClangFilterUnknownCflags(arm64Cflags), " ")) 110 pctx.StaticVariable("Arm64ClangLdflags", strings.Join(ClangFilterUnknownCflags(arm64Ldflags), " ")) 111 pctx.StaticVariable("Arm64ClangCppflags", strings.Join(ClangFilterUnknownCflags(arm64Cppflags), " ")) 113 pctx.StaticVariable("Arm64ClangArmv8ACflags", strings.Join(arm64ArchVariantCflags["armv8-a"], " ")) 114 pctx.StaticVariable("Arm64ClangArmv82ACflags", strings.Join(arm64ArchVariantCflags["armv8-2a"], " ")) 117 strings.Join(arm64CpuVariantCflags["cortex-a53"], " ")) 119 strings.Join(arm64ClangCpuVariantCflags["cortex-a53"], " ") [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
mkreal.py | 11 join = os.path.join
variable 39 linkto = join(os.pardir, linkto)
43 os.symlink(join(linkto, filename), join(name, filename))
|
/external/chromium-trace/catapult/common/eslint/eslint/ |
__init__.py | 10 _CATAPULT_PATH = os.path.join( 21 _AddToPathIfNeeded(os.path.join(_CATAPULT_PATH, 'common', 'node_runner')) 22 _AddToPathIfNeeded(os.path.join(_CATAPULT_PATH, 'common', 'py_utils')) 34 os.path.join(node_util.GetNodeModulesPath(), 'eslint', 'bin', 'eslint.js'), 39 DEFAULT_ESLINT_RULES_DIR = os.path.join(
|
/external/fonttools/MetaTools/ |
buildTableList.py | 9 fontToolsDir = os.path.dirname(os.path.dirname(os.path.join(os.getcwd(), sys.argv[0]))) 11 tablesDir = os.path.join(fontToolsDir, 13 docFile = os.path.join(fontToolsDir, "Doc", "documentation.html") 32 file = open(os.path.join(tablesDir, "__init__.py"), "w") 53 doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:]
|
/external/python/cpython2/Tools/scripts/ |
mkreal.py | 11 join = os.path.join variable 39 linkto = join(os.pardir, linkto) 43 os.symlink(join(linkto, filename), join(name, filename))
|
/external/python/cpython3/Tools/scripts/ |
mkreal.py | 11 join = os.path.join variable 39 linkto = join(os.pardir, linkto) 43 os.symlink(join(linkto, filename), join(name, filename))
|
/external/skia/tools/ |
find_run_binary.py | 48 trunk_path = os.path.abspath(os.path.join(os.path.dirname(__file__), 50 possible_paths = [os.path.join(trunk_path, 'out', 'Release', program), 51 os.path.join(trunk_path, 'out', 'Debug', program), 52 os.path.join(trunk_path, 'out', 'Release', 54 os.path.join(trunk_path, 'out', 'Debug',
|
/external/skqp/tools/ |
find_run_binary.py | 48 trunk_path = os.path.abspath(os.path.join(os.path.dirname(__file__), 50 possible_paths = [os.path.join(trunk_path, 'out', 'Release', program), 51 os.path.join(trunk_path, 'out', 'Debug', program), 52 os.path.join(trunk_path, 'out', 'Release', 54 os.path.join(trunk_path, 'out', 'Debug',
|
/external/tensorflow/tensorflow/contrib/lite/testing/ |
join_test.cc | 15 #include "tensorflow/contrib/lite/testing/join.h" 26 EXPECT_EQ(Join(data.data(), data.size(), ","), "1,2,3"); 31 EXPECT_EQ(Join(data, 4, " "), "1 -3 2.3 1e-05"); 34 TEST(JoinTest, JoinNullData) { EXPECT_THAT(Join<int>(nullptr, 3, ","), ""); } 38 EXPECT_THAT(Join(data.data(), 0, ","), "");
|
/external/webrtc/webrtc/tools/barcode_tools/ |
build_zxing.py | 20 ant_executable = os.path.join(os.getenv('ANT_HOME'), 'bin', 'ant.bat') 28 print >> sys.stderr, 'Failed to execute: %s' % ' '.join(cmd) 31 print >> sys.stderr, 'Failed to execute: %s.\nCause: %s' % (' '.join(cmd), 36 core_build = os.path.join('third_party', 'zxing', 'core', 'build.xml') 39 javase_build = os.path.join('third_party', 'zxing', 'javase', 'build.xml')
|