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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
RSTestCore.java 126 activeTest.join();
177 t.join();
  /libcore/luni/src/test/java/libcore/java/lang/
OldObjectTest.java 114 thr2.join();
115 thr1.join();
180 thr2.join();
181 thr1.join();
236 thr2.join();
237 thr1.join();
ThreadTest.java 107 t2.join();
  /libcore/luni/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/
ThreadsTest.java 61 waiterThread.join();
62 parkerThread.join();
76 waiterThread.join();
77 parkerThread.join();
89 parkerThread.join();
103 waiterThread.join();
104 parkerThread.join();
118 waiterThread.join();
119 parkerThread.join();
131 parkerThread.join();
    [all...]
  /art/test/079-phantom/src/
Bitmap.java 56 sWatcher.join();
58 System.out.println("join intr");
  /cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
DocletRunner.java 77 return join(sourcePath, ":");
83 return join(classPath, ":");
107 private String join(List<String> options, String delimiter) { method in class:DocletRunner
  /dalvik/tests/079-phantom/src/
Bitmap.java 56 sWatcher.join();
58 System.out.println("join intr");
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 378 stdoutVacuum.join();
379 stderrVacuum.join();
527 public void join() throws InterruptedException { method in class:BaseTest.StreamVacuum
528 sucker.join();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadLocalTest.java 89 t.join();
139 t.join();
  /external/chromium_org/chrome/browser/resources/file_manager/common/js/
path_util.js 194 * Join path components into a single path. Can be called either with a list of
198 * Path.join('abc', 'def') -> 'abc/def'
199 * Path.join('/', 'abc', 'def/ghi') -> '/abc/def/ghi'
200 * Path.join(['/abc/def', 'ghi']) -> '/abc/def/ghi'
204 PathUtil.join = function() {
253 return PathUtil.join(components[0], components[1]);
  /external/chromium_org/v8/tools/
run-deopt-fuzzer.py 36 from os.path import join namespace
288 workspace = os.path.abspath(join(os.path.dirname(sys.argv[0]), ".."))
290 suite_paths = utils.GetSuitePaths(join(workspace, "test"))
305 os.path.join(workspace, "test", root))
339 shell_dir = os.path.join(workspace, options.outdir, mode)
342 shell_dir = os.path.join(workspace, options.outdir,
run-tests.py 35 from os.path import join namespace
191 options.arch = ",".join([tokens[0] for tokens in options.arch_and_mode])
192 options.mode = ",".join([tokens[1] for tokens in options.arch_and_mode])
257 run_valgrind = os.path.join("tools", "run-valgrind.py")
301 workspace = os.path.abspath(join(os.path.dirname(sys.argv[0]), ".."))
305 [sys.executable, join(workspace, "tools", "presubmit.py")])
308 suite_paths = utils.GetSuitePaths(join(workspace, "test"))
323 os.path.join(workspace, "test", root))
343 shell_dir = os.path.join(workspace, options.outdir, mode)
346 shell_dir = os.path.join(workspace, options.outdir
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
RemoteAcceptThread.java 72 r2l.join();
StreamForwarder.java 90 sibling.join();
  /external/guava/guava/src/com/google/common/primitives/
UnsignedLongs.java 117 * {@code separator}. For example, {@code join("-", 1, 2, 3)} returns the string {@code "1-2-3"}.
123 public static String join(String separator, long... array) { method in class:UnsignedLongs
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestRagDoll.java 60 join(body, shoulders, new Vector3f(0f, 1.4f, 0)); method
61 join(body, hips, new Vector3f(0f, -0.5f, 0)); method
63 join(uArmL, shoulders, new Vector3f(-0.75f, 1.4f, 0)); method
64 join(uArmR, shoulders, new Vector3f(0.75f, 1.4f, 0)); method
65 join(uArmL, lArmL, new Vector3f(-0.75f, .4f, 0)); method
66 join(uArmR, lArmR, new Vector3f(0.75f, .4f, 0)); method
68 join(uLegL, hips, new Vector3f(-.25f, -0.5f, 0)); method
69 join(uLegR, hips, new Vector3f(.25f, -0.5f, 0)); method
70 join(uLegL, lLegL, new Vector3f(-.25f, -1.7f, 0)); method
71 join(uLegR, lLegR, new Vector3f(.25f, -1.7f, 0)) method
99 private PhysicsJoint join(Node A, Node B, Vector3f connectionPoint) { method in class:TestRagDoll
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
HandlerThreadTest.java 26 handlerThread.join();
50 handlerThread.join();
62 handlerThread.join();
  /external/v8/test/mjsunit/
testcfg.py 30 from os.path import join, dirname, exists namespace
76 result.append(join(dirname(self.config.root), '..', a_file))
77 framework = join(dirname(self.config.root), 'mjsunit', 'mjsunit.js')
125 regress = [current_path + ['regress', t] for t in self.Ls(join(self.root, 'regress'))]
126 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))]
127 third_party = [current_path + ['third_party', t] for t in self.Ls(join(self.root, 'third_party'))]
128 tools = [current_path + ['tools', t] for t in self.Ls(join(self.root, 'tools'))]
129 compiler = [current_path + ['compiler', t] for t in self.Ls(join(self.root, 'compiler'))]
130 harmony = [current_path + ['harmony', t] for t in self.Ls(join(self.root, 'harmony'))]
142 file_path = join(self.root, reduce(join, test[1:], "") + ".js"
    [all...]
  /external/v8/test/preparser/
testcfg.py 30 from os.path import join, dirname, exists, isfile namespace
60 testfile = join(self.root, self.GetName()) + ".js"
82 expects_file = join(self.root, 'preparser.expectation')
100 pathname = join(self.root, filename + ".pyt")
126 executable = join(self.context.buildspace, executable)
128 executable = join('obj', 'preparser', mode, 'preparser')
131 executable = join(self.context.buildspace, executable)
155 status_file = join(self.root, 'preparser.status')
  /frameworks/volley/tests/src/com/android/volley/
CacheDispatcherTest.java 60 mDispatcher.join();
NetworkDispatcherTest.java 60 mDispatcher.join();
  /libcore/luni/src/test/java/libcore/java/net/
ConcurrentCloseTest.java 155 t.join();
OldCookieHandlerTest.java 65 thread.join();
  /libcore/luni/src/test/java/libcore/java/text/
BreakIteratorTest.java 200 t.join();
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
TestThread.java 41 thread.join();

Completed in 351 milliseconds

1 2 3 4 5 6 7 8 91011>>