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

1 2

  /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/regex-re2/util/
thread.cc 33 void Thread::Join() {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
Join.java 5 public class Join {
6 public static String join(String delimiter, Collection collection) { method in class:Join
19 public static String join(String delimiter, Object... collection) { method in class:Join
  /external/chromium/base/threading/
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_posix.cc 217 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
platform_thread_win.cc 128 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
  /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...]
test_utils.h 85 // An array of threads. Create/start/join all elements at once.
106 void Join() {
109 ar_[i]->Join();
thread_wrappers_win.h 213 void Join() {
thread_wrappers_pthread.h 347 void Join() { CHECK(0 == pthread_join(t_, NULL));}
  /external/llvm/lib/MC/
SubtargetFeature.cpp 90 /// Join a vector of strings to a string with a comma separating each element.
92 static std::string Join(const std::vector<std::string> &V) {
185 return Join(Features);
  /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/protobuf/src/google/protobuf/stubs/
once_unittest.cc 84 if (!joined_) Join();
91 void Join() {
215 threads[i]->Join();
246 threads[i]->Join();
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 295 void Thread::Join() {
368 Join();
439 // only via Join, so Send must complete.
  /external/chromium/third_party/libjingle/source/talk/session/phone/
call.cc 367 void Call::Join(Call *call, bool enable) {
  /external/v8/src/
array.js 35 // join invocations.
119 function Join(array, length, separator, convert) {
385 func = this.join;
387 return Join(this, this.length, ',', ConvertToString);
392 func = array.join;
406 return Join(array, len, ',', ConvertToLocaleString);
413 ["Array.prototype.join"]);
425 return Join(this, TO_UINT32(this.length), separator, ConvertToString);
    [all...]
platform-nullos.cc 376 void Thread::Join() {
platform-cygwin.cc 428 void Thread::Join() {
platform-freebsd.cc 522 void Thread::Join() {
platform-macos.cc 552 void Thread::Join() {
platform-solaris.cc 514 void Thread::Join() {
  /external/v8/test/cctest/
test-lockers.cc 111 thread1.Join();
140 void Join() {
197 threads[i]->Join();
313 threadB.Join();
381 thread.Join();
433 thread.Join();
509 thread.Join();
524 thread.Join();
  /external/valgrind/main/drd/tests/
annotate_smart_pointer.cpp 85 void Join()
148 void Join()
328 T[i].Join();
  /external/skia/include/core/
SkPaint.h 395 /** Join enum specifies the settings for the paint's strokejoin. This is
398 enum Join {
399 kMiter_Join, //!< connect path segments with a sharp join
400 kRound_Join, //!< connect path segments with a round join
401 kBevel_Join, //!< connect path segments with a flat bevel join
420 /** Return the paint's stroke join type.
421 @return the paint's line join style, used whenever the paint's style is
424 Join getStrokeJoin() const { return (Join)fJoinType; }
426 /** Set the paint's stroke join type
    [all...]
  /external/skia/legacy/include/core/
SkPaint.h 394 /** Join enum specifies the settings for the paint's strokejoin. This is
397 enum Join {
398 kMiter_Join, //!< connect path segments with a sharp join
399 kRound_Join, //!< connect path segments with a round join
400 kBevel_Join, //!< connect path segments with a flat bevel join
419 /** Return the paint's stroke join type.
420 @return the paint's line join style, used whenever the paint's style is
423 Join getStrokeJoin() const { return (Join)fJoinType; }
425 /** Set the paint's stroke join type
    [all...]

Completed in 1080 milliseconds

1 2