Searched refs:Join (Results 1 - 25 of 221) sorted by relevance

123456789

/external/regex-re2/util/
H A Dthread.h15 void Join();
H A Dthread.cc33 void Thread::Join() { function in class:Thread
/external/skia/src/utils/
H A DSkOSPath.h32 static SkString Join(const char* rootPath, const char* relativePath);
H A DSkMultiPictureDocumentPriv.h21 inline SkSize Join(const SkTArray<SkSize>& sizes) { function in namespace:SkMultiPictureDocumentProtocol
/external/selinux/mcstrans/share/examples/pipes/setrans.d/
H A Dpipes.conf6 Join=,
/external/webrtc/webrtc/base/
H A Dthread_checker_unittest.cc63 // New method. Needed since Thread::Join is protected, and it is called by
65 void Join() { function in class:rtc::__anon24405::CallDoStuffOnThread
66 Thread::Join();
87 // New method. Needed since Thread::Join is protected, and it is called by
89 void Join() { function in class:rtc::__anon24405::DeleteThreadCheckerClassOnThread
90 Thread::Join();
122 delete_on_thread.Join();
135 call_on_thread.Join();
149 call_on_thread.Join();
174 call_on_thread.Join();
[all...]
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DTripleTest.cpp106 static std::string Join(StringRef A, StringRef B, StringRef C) { function in namespace:__anon19078
111 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) { function in namespace:__anon19078
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(
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
H A DJoinParser.java9 // Parser for Join Header (RFC3911)
12 // Join = "Join" HCOLON callid *(SEMI join-param)
48 Join join = new Join();
63 { "Join: 12345th5z8z\n",
64 "Join: 12345th5z8z;to-tag=tozght6-45;from-tag=fromzght789-337-2\n",
69 Join t = (Join) tp.parse();
/external/v8/src/libplatform/
H A Dworker-thread.cc20 Join();
/external/libchrome/base/threading/
H A Dthread_checker_unittest.cc105 delete_on_thread.Join();
118 call_on_thread.Join();
132 call_on_thread.Join();
157 call_on_thread.Join();
H A Dnon_thread_safe_unittest.cc106 delete_on_thread.Join();
120 call_on_thread.Join();
145 delete_on_thread.Join();
H A Dthread_collision_warner_unittest.cc176 thread_a.Join();
177 thread_b.Join();
233 thread_a.Join();
234 thread_b.Join();
301 thread_a.Join();
302 thread_b.Join();
378 thread_a.Join();
379 thread_b.Join();
/external/gemmlowp/test/
H A Dtest_blocking_counter.cc33 ~Thread() { Join(); }
35 bool Join() const { function in class:gemmlowp::Thread
73 if (threads[i]->Join()) {
/external/skia/src/core/
H A DSkStroke.h37 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; }
38 void setJoin(SkPaint::Join);
/external/libbrillo/brillo/strings/
H A Dstring_utils_unittest.cc123 EXPECT_EQ("", string_utils::Join(",", {}));
124 EXPECT_EQ("abc", string_utils::Join(",", {"abc"}));
125 EXPECT_EQ("abc,,xyz", string_utils::Join(",", {"abc", "", "xyz"}));
126 EXPECT_EQ("abc,defg", string_utils::Join(",", {"abc", "defg"}));
127 EXPECT_EQ("1 : 2 : 3", string_utils::Join(" : ", {"1", "2", "3"}));
128 EXPECT_EQ("1:2", string_utils::Join(":", std::set<std::string>{"1", "2"}));
129 EXPECT_EQ("1:2", string_utils::Join(":", std::vector<std::string>{"1", "2"}));
130 EXPECT_EQ("1:2", string_utils::Join(":", std::list<std::string>{"1", "2"}));
131 EXPECT_EQ("123", string_utils::Join("", {"1", "2", "3"}));
135 EXPECT_EQ("ab,cd", string_utils::Join(",", "a
[all...]
/external/libchrome/base/synchronization/
H A Dlock_unittest.cc85 PlatformThread::Join(handle);
125 PlatformThread::Join(handle);
139 PlatformThread::Join(handle);
186 PlatformThread::Join(handle);
208 PlatformThread::Join(handle1);
209 PlatformThread::Join(handle2);
210 PlatformThread::Join(handle3);
/external/sfntly/cpp/src/test/
H A Dlock_test.cc94 PlatformThread::Join(handle);
136 PlatformThread::Join(handle);
150 PlatformThread::Join(handle);
200 PlatformThread::Join(handle);
223 PlatformThread::Join(handle1);
224 PlatformThread::Join(handle2);
225 PlatformThread::Join(handle3);
H A Dplatform_thread.h58 // NOTE: When you are done with the thread handle, you must call Join to
66 static void Join(PlatformThreadHandle thread_handle);
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
H A DJoin.java14 * Join SIPHeader.
23 public class Join class in inherits:ParametersHeader,ExtensionHeader,JoinHeader
31 public static final String NAME = "Join";
42 public Join() { method in class:Join
50 public Join(String callId) throws IllegalArgumentException { method in class:Join
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextUtils.java6 import com.xtremelabs.robolectric.util.Join;
48 return Join.join((String) delimiter, (Collection) tokens);
53 return Join.join((String) delimiter, tokens);
H A DShadowPaint.java21 private Paint.Join join;
99 public void setStrokeJoin(Paint.Join join) {
104 public Paint.Join getStrokeJoin() {
176 public Paint.Join getJoin() {
H A DShadowColorMatrix.java6 import com.xtremelabs.robolectric.util.Join;
68 return Join.join(",", floats);
/external/skia/include/core/
H A DSkStrokeRec.h40 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; }
60 void setStrokeParams(SkPaint::Cap cap, SkPaint::Join join, SkScalar miterLimit) {
146 uint32_t fJoin : 15; // SkPaint::Join
/external/skia/tests/
H A DBadIcoTest.cpp33 SkString resourcePath = SkOSPath::Join(badImagesFolder, badImages[i]);
/external/libmojo/mojo/edk/system/
H A Dwaiter_test_utils.cc19 Join();
52 Join();

Completed in 973 milliseconds

123456789