/external/robolectric/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...] |
/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...] |
/external/fonttools/MetaTools/ |
buildChangeLog.py | 6 os.path.join(os.getcwd(), sys.argv[0]))))
|
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/libcxx/test/libcxx/android/ |
build.py | 7 env['ONE_SHOT_MAKEFILE'] = os.path.join(path, 'Android.mk')
|
/external/lldb/test/arm_emulation/ |
TestEmulations.py | 16 test_dir = os.path.join (current_dir, "new-test-files") 24 test_file = os.path.join (test_dir, f) 30 test_dir = os.path.join (current_dir, "new-test-files") 38 test_file = os.path.join (test_dir, f)
|
/external/lldb/test/functionalities/conditional_break/ |
.lldb | 4 #script sys.path.append(os.path.join(os.getcwd(), os.pardir))
|
/external/llvm/test/BugPoint/ |
compile-custom.ll.py | 8 print("Error: " + ' '.join(sys.argv[1:]))
|
/external/llvm/utils/lit/lit/ |
__init__.py | 9 __version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
|
/external/pdfium/build/ |
gyp_pdfium | 15 pdfium_root = os.path.abspath(os.path.join(script_dir, os.pardir)) 17 sys.path.insert(0, os.path.join(pdfium_root, 'build', 'gyp', 'pylib')) 30 args.append(os.path.join(script_dir, 'all.gyp')) 33 args.append(os.path.join(pdfium_root, 'build', 'standalone.gypi'))
|
gyp_pdfium.py | 8 execfile(os.path.join(path, 'gyp_pdfium'))
|
/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/chromium-trace/trace-viewer/hooks/ |
install.py | 8 _TOP_PATH = os.path.abspath(os.path.join( 17 full_src_path = os.path.join(_TOP_PATH, self.src_path) 18 full_dst_path = os.path.join(_TOP_PATH, self.dst_path) 57 old_precommit = os.path.join(_TOP_PATH, '.git', 'hooks', 'pre-commit') 58 old_precommit_target = os.path.join(_TOP_PATH, 'hooks', 'pre_commit') 64 links.append(Link(os.path.join('.git', 'hooks', 'pre-push'), 65 os.path.join('hooks/pre_push')))
|
/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/v8/test/mjsunit/ |
cyclic-array-to-string.js | 33 assertEquals("1,2", a1.join()); 37 assertEquals("1,2,", a1.join()); 41 assertEquals("1,2,,1", a1.join()); 45 assertEquals("1,2,,1,", a1.join()); 53 assertEquals("1,2,3,4,3,4", a1.join()); 57 assertEquals("1,2,3,4,,3,4,", a1.join()); 64 assertEquals("", a1.join());
|
/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/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/guava/guava-tests/test/com/google/common/base/ |
JoinerTest.java | 69 J.join(ITERABLE_NULL); 74 J.join(ITERABLE_1_NULL_2); 80 J.join(ITERABLE_NULL.iterator()); 85 J.join(ITERABLE_1_NULL_2.iterator()); 128 assertEquals("", joiner.join(set)); 129 assertEquals("", joiner.join(set.iterator())); 132 assertEquals("", joiner.join(array)); 181 assertEquals(expected, joiner.join(parts)); 182 assertEquals(expected, joiner.join(parts.iterator())); 193 assertEquals(expected, joiner.join(partsArray)) [all...] |
/external/mockito/src/org/mockito/exceptions/ |
Reporter.java | 31 import static org.mockito.internal.util.StringJoiner.join; 47 throw new MockitoException(join( 54 throw new MockitoException(join( 61 throw new UnfinishedStubbingException(join( 78 throw new MockitoException(join( 91 throw new MissingMethodInvocationException(join( 107 UnfinishedVerificationException exception = new UnfinishedVerificationException(join( 123 throw new NotAMockException(join( 134 throw new NullInsteadOfMockException(join( 145 throw new NotAMockException(join( 369 throw new NeverWantedButInvoked(join( method [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/chromium-trace/ |
run_unittest.py | 43 self.assertEqual(' '.join(command), 'adb shell ls /data/local/tmp') 46 self.assertEqual(' '.join(command), 50 self.assertEqual(' '.join(command), 59 self.assertEqual(' '.join(TRACE_CMD), ' '.join(tracer_args)) 113 self.assertEqual(' '.join(TRACE_LIST_CATEGORIES_CMD), ' '.join(tracer_args)) 121 self.assertEqual(' '.join(LEGACY_TRACE_CMD), ' '.join(tracer_args))
|
/external/chromium-trace/trace-viewer/tracing/tracing/extras/importer/ |
battor_importer_test.html | 54 BATTOR_LINES.join('\n'))); 58 var m = new tr.Model(SYSTRACE_LINES.join('\n'), false); 59 m.importTraces([BATTOR_LINES.join('\n')]); 73 var m = new tr.Model(SYSTRACE_LINES.join('\n'), false); 74 m.importTraces([BATTOR_LINES.join('\n')]); 76 m.importTraces([BATTOR_LINES.join('\n')]); 81 var m = new tr.Model(BATTOR_LINES.join('\n'), false); 87 var m = new tr.Model(SYSTRACE_LINES.join('\n'), false); 88 m.importTraces([shortLines.join('\n')]);
|