HomeSort by relevance Sort by last modified time
    Searched refs:Join (Results 26 - 50 of 301) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextUtils.java 6 import com.xtremelabs.robolectric.util.Join;
47 public static String join(CharSequence delimiter, Iterable tokens) { method in class:ShadowTextUtils
48 return Join.join((String) delimiter, (Collection) tokens);
52 public static String join(CharSequence delimiter, Object[] tokens) { method in class:ShadowTextUtils
53 return Join.join((String) delimiter, tokens);
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...]
ShadowColorMatrix.java 6 import com.xtremelabs.robolectric.util.Join;
68 return Join.join(",", floats);
ShadowSQLiteQueryBuilder.java 6 import com.xtremelabs.robolectric.util.Join;
26 sb.append(Join.join(", ", (Object[]) columns));
  /external/chromium/base/threading/
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_org/base/threading/
platform_thread_unittest.cc 12 // Trivial tests that thread runs and doesn't crash on create and join ---------
36 PlatformThread::Join(handle);
49 PlatformThread::Join(handle[n]);
87 PlatformThread::Join(handle);
106 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();
  /external/chromium_org/ppapi/utility/threading/
simple_thread.h 43 bool Join();
  /external/chromium_org/third_party/re2/util/
thread.cc 33 void Thread::Join() {
  /external/chromium_org/v8/test/cctest/
test-semaphore.cc 71 t1.Join();
72 t2.Join();
153 producer_thread.Join();
154 consumer_thread.Join();
  /external/regex-re2/util/
thread.cc 33 void Thread::Join() {
  /external/valgrind/unittest/
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...]
  /external/llvm/unittests/ADT/
TripleTest.cpp 136 static std::string Join(StringRef A, StringRef B, StringRef C) {
141 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) {
195 std::string E = Join(C[0], C[1], C[2]);
196 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[1], C[2])));
198 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[2], C[1])));
199 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[2], C[0])));
200 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[0], C[2])));
201 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[0], C[1])));
202 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[1], C[0])));
208 std::string F = Join(C[0], C[1], C[2], C[3])
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.h 49 std::string Join() const;
55 static std::string Join(const StringArray_t& paths);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
StrokeData.h 79 void setLineJoin(const LineJoin join) { m_lineJoin = (SkPaint::Join)join; }
100 SkPaint::Join m_lineJoin;
  /external/chromium_org/third_party/sfntly/cpp/src/test/
platform_thread.cc 43 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
79 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
  /external/sfntly/cpp/src/test/
platform_thread.cc 43 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
79 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
  /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();
341 t.Join();
476 t.Join();
624 t.Join();
634 // test08: TN. Synchronization via thread start/join. {{{1
637 // Three accesses to GLOB are separated by thread start/join.
643 // 3. Join(Worker) <------------
653 t.Join();
    [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);

Completed in 1758 milliseconds

12 3 4 5 6 7 8 91011>>