HomeSort by relevance Sort by last modified time
    Searched defs:join (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /libcore/luni/src/main/java/org/apache/xml/utils/
ThreadControllerWrapper.java 92 worker.join();
  /libcore/luni/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCacheTest.java 53 threads[i].join(); method
  /frameworks/base/core/tests/coretests/src/android/os/
TraceTest.java 95 t1.join();
96 t2.join();
97 t3.join();
  /packages/apps/Gallery/tests/src/com/android/camera/
BitmapManagerUnitTests.java 90 t.join();
102 t.join();
115 t.join();
131 t1.join();
132 t2.join();
  /dalvik/tests/074-gc-thrash/src/
Main.java 126 robin.join();
127 deep.join();
128 large.join();
130 System.err.println("join was interrupted");
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 193 httpServer.join();
233 server.join();
234 proxy.join();
283 server.join();
284 proxy.join();
335 proxy.join();
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
CyclicBarrierTest.java 101 t.join();
124 t1.join();
125 t2.join();
147 t1.join();
148 t2.join();
162 t.join();
182 t1.join();
183 t2.join();
203 t1.join();
204 t2.join();
    [all...]
FutureTaskTest.java 155 t.join();
176 t.join();
200 t.join();
224 t.join();
249 t1.join();
250 t2.join();
273 t1.join();
274 t2.join();
328 t.join();
344 t.join();
    [all...]
LockSupportTest.java 33 t.join();
48 t.join();
63 t.join();
82 t.join();
95 t.join();
110 t.join();
TimeUnitTest.java 349 t.join();
368 t.join();
389 t.join();
391 s.join();
407 t.join();
  /cts/tools/dx-tests/src/dxc/junit/opcodes/monitorexit/
Test_monitorexit.java 40 th.join();
  /cts/tools/vm-tests/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java 38 th.join();
  /external/chromium/base/
linked_ptr.h 56 // Join an existing circle.
57 void join(linked_ptr_internal const* ptr) { function in class:linked_ptr_internal
63 // last member of the circle. Once this is done, you can join() another.
157 link_.join(&ptr->link_);
  /external/gtest/include/gtest/internal/
gtest-linked_ptr.h 107 // Join an existing circle.
109 void join(linked_ptr_internal const* ptr) { function in class:testing::internal::linked_ptr_internal
119 // last member of the circle. Once this is done, you can join() another.
215 link_.join(&ptr->link_);
  /external/protobuf/gtest/include/gtest/internal/
gtest-linked_ptr.h 107 // Join an existing circle.
109 void join(linked_ptr_internal const* ptr) { function in class:testing::internal::linked_ptr_internal
119 // last member of the circle. Once this is done, you can join() another.
215 link_.join(&ptr->link_);
  /external/v8/test/message/
testcfg.py 30 from os.path import join, dirname, exists, basename, isdir namespace
109 regress = [current_path + ['regress', t] for t in self.Ls(join(self.root, 'regress'))]
110 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))]
115 file_prefix = join(self.root, reduce(join, test[1:], ""))
129 status_file = join(self.root, 'message.status')
  /external/v8/test/mjsunit/
testcfg.py 30 from os.path import join, dirname, exists namespace
73 result.append(join(dirname(self.config.root), '..', a_file))
74 framework = join(dirname(self.config.root), 'mjsunit', 'mjsunit.js')
113 regress = [current_path + ['regress', t] for t in self.Ls(join(self.root, 'regress'))]
114 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))]
115 third_party = [current_path + ['third_party', t] for t in self.Ls(join(self.root, 'third_party'))]
116 tools = [current_path + ['tools', t] for t in self.Ls(join(self.root, 'tools'))]
117 compiler = [current_path + ['compiler', t] for t in self.Ls(join(self.root, 'compiler'))]
122 file_path = join(self.root, reduce(join, test[1:], "") + ".js"
    [all...]
  /external/v8/test/sputnik/
testcfg.py 30 from os.path import join, exists namespace
86 testroot = join(self.root, 'sputniktests')
87 modroot = join(testroot, 'tools')
106 status_file = join(self.root, 'sputnik.status')
  /external/webkit/WebKitTools/CodeCoverage/
regenerate-coverage-display 52 os.environ["TTFPATH"] = ":".join(["/usr/share/fonts/truetype/" + d
69 shutil.copyfile(os.path.join(base_path,css), os.path.join(dest_dir,css))
70 map(lambda x: shutil.copyfile(os.path.join(base_path,x), os.path.join(dest_dir,x)), images)
76 index = open(os.path.join(dest_dir, name), "w")
173 from string import split, join namespace
176 text = join(split(text, a), b)
294 for datapath in glob.glob(os.path.join(datadir, "*.csv")):
328 imgdir = os.path.join(outdir, rel_imgdir
    [all...]
  /libcore/luni/src/main/java/java/net/
DatagramSocketImpl.java 128 * Adds this socket to the multicast group {@code addr}. A socket must join
130 * member of multiple groups but may join any group only once.
138 protected abstract void join(InetAddress addr) throws IOException; method in class:DatagramSocketImpl
141 * Adds this socket to the multicast group {@code addr}. A socket must join
143 * member of multiple groups but may join any group only once.
  /packages/apps/Camera/tests/src/com/android/camera/gallery/
LruCacheUnitTests.java 75 accessor[i].join(); method
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
LruCacheUnitTests.java 71 accessor[i].join(); method
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ClassLoaderTest.java 156 tt1.join();
157 tt2.join();
ThreadLocalTest.java 113 t.join();
169 t.join();
210 thread.join();
  /dalvik/tests/079-phantom/src/
Bitmap.java 56 sWatcher.join();
58 System.out.println("join intr");

Completed in 7494 milliseconds

12 3 4 5 6 7