HomeSort by relevance Sort by last modified time
    Searched defs:join (Results 126 - 150 of 637) sorted by null

1 2 3 4 56 7 8 91011>>

  /art/test/050-sync-test/src/
Main.java 67 one.join();
68 two.join();
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/
Test_monitor_enter.java 42 tr1.join();
43 tr2.join();
62 tr1.join();
63 tr2.join();
  /dalvik/tests/050-sync-test/src/
Main.java 53 one.join();
54 two.join();
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
CustomDispatcherTest.java 77 endsFirst.join();
81 startsFirst.join();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
ClassCacheTest.java 34 locker.join(timeToWait, 0);
38 attempt.join(timeToWait, 0);
73 locker.join(timeToWait, 0);
77 attempt.join(timeToWait, 0);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 56 thread.join();
64 thread2.join();
  /art/test/036-finalizer/src/
Main.java 53 t.join();
81 t.join();
  /art/test/054-uncaught/src/
Main.java 34 t.join();
  /dalvik/tests/036-finalizer/src/
Main.java 39 t.join();
67 t.join();
  /dalvik/tests/054-uncaught/src/
Main.java 20 t.join();
  /external/apache-harmony/security/src/test/api/java/tests/api/java/security/
AccessControlContextTest.java 64 th.join();
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
LoadLocaleProviderTestHelper.java 32 thread.join();
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ThreadControllerWrapper.java 92 worker.join();
  /external/chromium_org/chrome/common/extensions/docs/server2/
extensions_paths.py 5 from posixpath import join namespace
12 API = join(EXTENSIONS, 'api')
13 DOCS = join(EXTENSIONS, 'docs')
15 API_FEATURES = join(API, '_api_features.json')
16 MANIFEST_FEATURES = join(API, '_manifest_features.json')
17 PERMISSION_FEATURES = join(API, '_permission_features.json')
19 EXAMPLES = join(DOCS, 'examples')
20 SERVER2 = join(DOCS, 'server2')
21 STATIC_DOCS = join(DOCS, 'static')
22 TEMPLATES = join(DOCS, 'templates'
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkThreadUtils_pthread.cpp 90 this->join();
110 void SkThread::join() { function in class:SkThread
SkThreadUtils_win.cpp 67 this->join();
91 void SkThread::join() { function in class:SkThread
  /external/chromium_org/v8/test/mjsunit/compiler/
escape-analysis.js 31 // Test stores on a join path.
36 function join(mode, expected) { function
45 join(true, 1); join(true, 1);
46 join(false, 2); join(false, 2);
47 %OptimizeFunctionOnNextCall(join);
48 join(true, 1); join(false, 2);
  /external/guava/guava/src/com/google/common/primitives/
SignedBytes.java 133 * by {@code separator}. For example, {@code join(":", 0x01, 0x02, -0x01)}
140 public static String join(String separator, byte... array) { method in class:SignedBytes
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java 9 // Parser for Join Header (RFC3911)
12 // Join = "Join" HCOLON callid *(SEMI join-param)
13 // join-param = to-tag / from-tag / generic-param
48 Join join = new Join(); local
52 super.parse(join);
53 join.setCallId(callId)
    [all...]
  /external/skia/gm/
strokerect.cpp 15 SkPaint::Join join, int doFill) {
22 paint.setStrokeJoin(join);
65 static const SkPaint::Join gJoins[] = {
85 SkPaint::Join join = gJoins[i]; local
86 paint.setStrokeJoin(join);
95 draw_path(canvas, fillPath, r, join, doFill);
  /external/skia/src/utils/
SkThreadUtils_pthread.cpp 90 this->join();
110 void SkThread::join() { function in class:SkThread
SkThreadUtils_win.cpp 67 this->join();
91 void SkThread::join() { function in class:SkThread
  /external/v8/test/benchmarks/
testcfg.py 31 from os.path import join, split namespace
63 result.append(join(self.root, 'run.js'))
76 return open(join(self.root, 'run.js')).read()
89 path = join(path, 'benchmarks')
  /external/v8/test/cctest/
testcfg.py 30 from os.path import join, dirname, exists namespace
52 if exists(join(self.context.buildspace, 'obj', 'test', self.mode)):
53 serialization_file = join('obj', 'test', self.mode, 'serdes')
55 serialization_file = join('obj', 'serdes')
57 serialization_file = join(self.context.buildspace, serialization_file)
58 serialization_file += ''.join(self.variant_flags).replace('-', '_')
88 executable = join(self.context.buildspace, executable)
90 executable = join('obj', 'test', mode, 'cctest')
93 executable = join(self.context.buildspace, executable)
112 status_file = join(self.root, 'cctest.status'
    [all...]
  /external/v8/test/es5conform/
testcfg.py 31 from os.path import join, exists namespace
78 current_root = join(self.root, 'data', 'TestCases')
80 harness += [join(self.root, 'data', 'SimpleTestHarness', f) for f in HARNESS_FILES]
81 harness += [join(self.root, 'harness-adapt.js')]
94 test = ES5ConformTestCase(join(root, file), full_path, self.context,
103 status_file = join(self.root, 'es5conform.status')

Completed in 1457 milliseconds

1 2 3 4 56 7 8 91011>>