HomeSort by relevance Sort by last modified time
    Searched refs:Join (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_JoinTest.java 24 import android.graphics.Paint.Join;
27 @TestTargetClass(Paint.Join.class)
36 assertEquals(Join.BEVEL, Join.valueOf("BEVEL"));
37 assertEquals(Join.MITER, Join.valueOf("MITER"));
38 assertEquals(Join.ROUND, Join.valueOf("ROUND"));
50 args = {android.graphics.Paint.Join.class}
60 Join[] actual = Join.values()
    [all...]
  /external/valgrind/unittest/output_tests/
fun_hist_test.cc 37 t1.Join();
38 t2.Join();
output_test1.cc 23 t1.Join();
24 t2.Join();
  /external/llvm/unittests/ADT/
TripleTest.cpp 106 static std::string Join(StringRef A, StringRef B, StringRef C) {
111 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) {
171 std::string E = Join(C[0], C[1], C[2]);
172 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[1], C[2])));
174 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[2], C[1])));
175 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[2], C[0])));
176 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[0], C[2])));
177 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[0], C[1])));
178 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[1], C[0])));
184 std::string F = Join(C[0], C[1], C[2], C[3])
    [all...]
  /external/skia/include/core/
SkStroke.h 45 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; }
46 void setJoin(SkPaint::Join);
  /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/valgrind/unittest/
opt_tests.cc 58 mta.Join();
demo_tests.cc 63 t1.Join();
64 t2.Join();
107 t1.Join(); t2.Join();
125 t.Join();
162 t.Join();
199 t1.Join(); t2.Join(); t3.Join(); t4.Join();
    [all...]
deadlock_unittest.cc 117 void Join() {
119 ar_[i]->Join();
180 t.Join();
211 t.Join();
235 t.Join();
265 t.Join();
300 t.Join();
342 t1.Join();
343 t2.Join();
344 t3.Join();
    [all...]
racecheck_unittest.cc 109 t.Join();
236 t.Join();
288 t.Join();
382 t.Join();
392 // test08: TN. Synchronization via thread start/join. {{{1
395 // Three accesses to GLOB are separated by thread start/join.
401 // 3. Join(Worker) <------------
411 t.Join();
443 t.Join();
479 t.Join();
    [all...]
atomicity_tests.cc 84 t.Join();
140 t.Join();
posix_tests.cc 97 t.Join();
139 t.Join();
145 t.Join();
206 t.Join();
240 t.Join();
320 t.Join();
394 t.Join();
437 t.Join();
490 t.Join();
498 t.Join();
    [all...]
test_utils.h 85 // An array of threads. Create/start/join all elements at once.
106 void Join() {
109 ar_[i]->Join();
  /external/chromium/base/threading/
thread_checker_unittest.cc 94 delete_on_thread.Join();
107 call_on_thread.Join();
121 call_on_thread.Join();
146 call_on_thread.Join();
non_thread_safe_unittest.cc 95 delete_on_thread.Join();
109 call_on_thread.Join();
134 delete_on_thread.Join();
platform_thread_unittest.cc 11 // Trivial tests that thread runs and doesn't crash on create and join ---------
35 PlatformThread::Join(handle);
48 PlatformThread::Join(handle[n]);
83 PlatformThread::Join(handle);
99 PlatformThread::Join(handle[n]);
thread_collision_warner_unittest.cc 176 thread_a.Join();
177 thread_b.Join();
234 thread_a.Join();
235 thread_b.Join();
303 thread_a.Join();
304 thread_b.Join();
381 thread_a.Join();
382 thread_b.Join();
simple_thread.cc 26 DCHECK(HasBeenJoined()) << "SimpleThread destroyed without being Join()ed.";
36 void SimpleThread::Join() {
37 DCHECK(HasBeenStarted()) << "Tried to Join a never-started thread.";
38 DCHECK(!HasBeenJoined()) << "Tried to Join a thread multiple times.";
39 PlatformThread::Join(thread_);
107 // Join and destroy all the worker threads.
109 threads_[i]->Join();
platform_thread.h 78 // NOTE: When you are done with the thread handle, you must call Join to
85 // cannot be Join()'d. Therefore, it also does not output a
92 static void Join(PlatformThreadHandle thread_handle);
  /external/chromium/base/synchronization/
lock_unittest.cc 82 PlatformThread::Join(handle);
122 PlatformThread::Join(handle);
136 PlatformThread::Join(handle);
185 PlatformThread::Join(handle);
207 PlatformThread::Join(handle1);
208 PlatformThread::Join(handle2);
209 PlatformThread::Join(handle3);
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
Join.java 14 * Join SIPHeader.
23 public class Join
31 public static final String NAME = "Join";
42 public Join() {
50 public Join(String callId) throws IllegalArgumentException {
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 277 // An array of threads. Create/start/join all elements at once. {{{1
298 void Join() {
301 ar_[i]->Join();
339 t.Join();
474 t.Join();
622 t.Join();
632 // test08: TN. Synchronization via thread start/join. {{{1
635 // Three accesses to GLOB are separated by thread start/join.
641 // 3. Join(Worker) <------------
651 t.Join();
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
once_unittest.cc 84 if (!joined_) Join();
91 void Join() {
215 threads[i]->Join();
246 threads[i]->Join();
  /external/skia/src/core/
SkStrokerPriv.h 46 static JoinProc JoinFactory(SkPaint::Join);
  /external/chromium/base/
tools_sanity_unittest.cc 127 PlatformThread::Join(a);
128 PlatformThread::Join(b);

Completed in 1212 milliseconds

1 2 3 4 5 6