/external/swiftshader/third_party/LLVM/unittests/ADT/ |
D | TripleTest.cpp | 106 static std::string Join(StringRef A, StringRef B, StringRef C) { in Join() function 111 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) { in Join() function 171 std::string E = Join(C[0], C[1], C[2]); in TEST() 172 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[1], C[2]))); in TEST() 174 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[2], C[1]))); in TEST() 175 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[2], C[0]))); in TEST() 176 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[0], C[2]))); in TEST() 177 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[0], C[1]))); in TEST() 178 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[1], C[0]))); in TEST() 184 std::string F = Join(C[0], C[1], C[2], C[3]); in TEST() [all …]
|
/external/webrtc/webrtc/base/ |
D | thread_checker_unittest.cc | 65 void Join() { in Join() function in rtc::__anon2d5a08460111::CallDoStuffOnThread 66 Thread::Join(); in Join() 89 void Join() { in Join() function in rtc::__anon2d5a08460111::DeleteThreadCheckerClassOnThread 90 Thread::Join(); in Join() 122 delete_on_thread.Join(); in TEST() 135 call_on_thread.Join(); in TEST() 149 call_on_thread.Join(); in MethodOnDifferentThreadImpl() 174 call_on_thread.Join(); in DetachThenCallFromDifferentThreadImpl()
|
/external/valgrind/drd/tests/ |
D | tsan_unittest.cpp | 302 void Join() { in Join() function in MyThreadArray 305 ar_[i]->Join(); in Join() 345 t.Join(); in Parent() 480 t.Join(); in Run() 628 t.Join(); in Waiter() 657 t.Join(); in Parent() 690 t.Join(); in Run() 727 t.Join(); in Run() 773 t.Join(); in Parent() 827 t.Join(); in Run() [all …]
|
/external/libbrillo/brillo/strings/ |
D | string_utils_unittest.cc | 123 EXPECT_EQ("", string_utils::Join(",", {})); in TEST() 124 EXPECT_EQ("abc", string_utils::Join(",", {"abc"})); in TEST() 125 EXPECT_EQ("abc,,xyz", string_utils::Join(",", {"abc", "", "xyz"})); in TEST() 126 EXPECT_EQ("abc,defg", string_utils::Join(",", {"abc", "defg"})); in TEST() 127 EXPECT_EQ("1 : 2 : 3", string_utils::Join(" : ", {"1", "2", "3"})); in TEST() 128 EXPECT_EQ("1:2", string_utils::Join(":", std::set<std::string>{"1", "2"})); in TEST() 129 EXPECT_EQ("1:2", string_utils::Join(":", std::vector<std::string>{"1", "2"})); in TEST() 130 EXPECT_EQ("1:2", string_utils::Join(":", std::list<std::string>{"1", "2"})); in TEST() 131 EXPECT_EQ("123", string_utils::Join("", {"1", "2", "3"})); in TEST() 135 EXPECT_EQ("ab,cd", string_utils::Join(",", "ab", "cd")); in TEST() [all …]
|
/external/sfntly/cpp/src/test/ |
D | lock_test.cc | 94 PlatformThread::Join(handle); in BasicLockTest() 136 PlatformThread::Join(handle); in TryLockTest() 150 PlatformThread::Join(handle); in TryLockTest() 200 PlatformThread::Join(handle); in MutexTwoThreads() 223 PlatformThread::Join(handle1); in MutexFourThreads() 224 PlatformThread::Join(handle2); in MutexFourThreads() 225 PlatformThread::Join(handle3); in MutexFourThreads()
|
/external/libchrome/base/synchronization/ |
D | lock_unittest.cc | 85 PlatformThread::Join(handle); in TEST() 125 PlatformThread::Join(handle); in TEST() 139 PlatformThread::Join(handle); in TEST() 186 PlatformThread::Join(handle); in TEST() 208 PlatformThread::Join(handle1); in TEST() 209 PlatformThread::Join(handle2); in TEST() 210 PlatformThread::Join(handle3); in TEST()
|
/external/libchrome/base/threading/ |
D | thread_collision_warner_unittest.cc | 176 thread_a.Join(); in TEST() 177 thread_b.Join(); in TEST() 233 thread_a.Join(); in TEST() 234 thread_b.Join(); in TEST() 301 thread_a.Join(); in TEST() 302 thread_b.Join(); in TEST() 378 thread_a.Join(); in TEST() 379 thread_b.Join(); in TEST()
|
D | thread_checker_unittest.cc | 105 delete_on_thread.Join(); in TEST() 118 call_on_thread.Join(); in TEST() 132 call_on_thread.Join(); in MethodOnDifferentThreadImpl() 157 call_on_thread.Join(); in DetachThenCallFromDifferentThreadImpl()
|
D | non_thread_safe_unittest.cc | 106 delete_on_thread.Join(); in TEST() 120 call_on_thread.Join(); in MethodOnDifferentThreadImpl() 145 delete_on_thread.Join(); in DestructorOnDifferentThreadImpl()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
D | JoinParser.java | 48 Join join = new Join(); in parse() 69 Join t = (Join) tp.parse(); in main()
|
/external/llvm/unittests/ADT/ |
D | TripleTest.cpp | 255 static std::string Join(StringRef A, StringRef B, StringRef C) { in Join() function 260 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) { in Join() function 317 std::string E = Join(C[0], C[1], C[2]); in TEST() 318 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[1], C[2]))); in TEST() 320 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[2], C[1]))); in TEST() 321 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[2], C[0]))); in TEST() 322 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[0], C[2]))); in TEST() 323 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[0], C[1]))); in TEST() 324 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[1], C[0]))); in TEST() 330 std::string F = Join(C[0], C[1], C[2], C[3]); in TEST() [all …]
|
/external/skia/src/core/ |
D | SkStroke.h | 37 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; } in getJoin() 38 void setJoin(SkPaint::Join);
|
D | SkStrokeRec.cpp | 112 stroker.setJoin((SkPaint::Join)fJoin); in applyToPath() 135 paint->setStrokeJoin((SkPaint::Join)fJoin); in applyToPaint() 138 static inline SkScalar get_inflation_bounds(SkPaint::Join join, in get_inflation_bounds() 157 return get_inflation_bounds((SkPaint::Join)fJoin, fWidth, fMiterLimit); in getInflationRadius()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowPaint.java | 21 private Paint.Join join; 99 public void setStrokeJoin(Paint.Join join) { in setStrokeJoin() 104 public Paint.Join getStrokeJoin() { in getStrokeJoin() 176 public Paint.Join getJoin() { in getJoin()
|
D | ShadowTextUtils.java | 6 import com.xtremelabs.robolectric.util.Join; 48 return Join.join((String) delimiter, (Collection) tokens); in join() 53 return Join.join((String) delimiter, tokens); in join()
|
/external/gemmlowp/test/ |
D | test_blocking_counter.cc | 33 ~Thread() { Join(); } in ~Thread() 35 bool Join() const { in Join() function in gemmlowp::Thread 73 if (threads[i]->Join()) { in test_blocking_counter()
|
/external/llvm/tools/llvm-go/ |
D | llvm-go.go | 75 configpath = filepath.Join(bin, "llvm-config") 125 fmt.Println(strings.Join(components, " ")) 159 path := filepath.Join(tmpgopath, "src", p.pkgpath) 165 err = os.Symlink(filepath.Join(srcdir, p.llvmpath), path) 175 newgopath := strings.Join(newgopathlist, string(filepath.ListSeparator))
|
/external/libchrome/base/task_scheduler/ |
D | scheduler_lock_unittest.cc | 113 thread.Join(); in TEST() 187 thread.Join(); in TEST() 207 thread.Join(); in TEST() 226 thread.Join(); in TEST() 249 thread.Join(); in TEST()
|
/external/libchrome/base/metrics/ |
D | persistent_memory_allocator_unittest.cc | 304 t1.Join(); in TEST_F() 305 t2.Join(); in TEST_F() 306 t3.Join(); in TEST_F() 307 t4.Join(); in TEST_F() 308 t5.Join(); in TEST_F() 415 t1.Join(); in TEST_F() 416 t2.Join(); in TEST_F() 417 t3.Join(); in TEST_F() 418 t4.Join(); in TEST_F() 419 t5.Join(); in TEST_F() [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
D | Join.java | 23 public class Join class 42 public Join() { in Join() method in Join 50 public Join(String callId) throws IllegalArgumentException { in Join() method in Join
|
/external/google-breakpad/src/tools/mac/upload_system_symbols/ |
D | upload_system_symbols.go | 194 symUpload := path.Join(*breakpadTools, "symupload") 262 dumpSyms := path.Join(*breakpadTools, "dump_syms") 265 filebase := path.Join(dq.dumpPath, strings.Replace(req.path, "/", "_", -1)) 301 uq.Upload(path.Join(directory, entry)) 325 fq.findLibsInPath(path.Join(root, p)) 349 fp := path.Join(loc, fi.Name())
|
/external/boringssl/src/util/ |
D | make_errors.go | 49 headerPath := filepath.Join(topLevelPath, "include", "openssl", lib+".h") 50 errDir := filepath.Join(topLevelPath, "crypto", "err") 51 dataPath := filepath.Join(errDir, lib+".errordata") 135 buildingPath := filepath.Join(path, "BUILDING.md") 139 path = filepath.Join("..", path) 140 buildingPath = filepath.Join(path, "BUILDING.md")
|
D | diff_asm.go | 29 …opensslDir = flag.String("openssl", filepath.Join("..", "openssl"), "The path to the OpenSSL che… 107 …if err := diff(filepath.Join(*opensslDir, opensslFile), filepath.Join(*boringsslDir, file)); err !…
|
/external/boringssl/src/ssl/test/runner/ |
D | runner.go | 200 …cert, err := LoadX509KeyPair(path.Join(*resourceDir, testCerts[i].certFile), path.Join(*resourceDi… 209 channelIDPEMBlock, err := ioutil.ReadFile(path.Join(*resourceDir, channelIDKeyFile)) 437 dir := path.Join(*transcriptDir, protocol, side) 444 if err := ioutil.WriteFile(path.Join(dir, name), data, 0644); err != nil { 900 flags = append(flags, path.Join(*resourceDir, rsaKeyFile)) 902 flags = append(flags, path.Join(*resourceDir, test.keyFile)) 907 flags = append(flags, path.Join(*resourceDir, rsaCertificateFile)) 909 flags = append(flags, path.Join(*resourceDir, test.certFile)) 3004 "-cert-file", path.Join(*resourceDir, rsaCertificateFile), 3005 "-key-file", path.Join(*resourceDir, rsaKeyFile), [all …]
|
/external/protobuf/src/google/protobuf/stubs/ |
D | once_unittest.cc | 85 if (!joined_) Join(); in ~TestThread() 92 void Join() { in Join() function in google::protobuf::__anon7c1b70cc0111::OnceInitTest::TestThread 217 threads[i]->Join(); in TEST_F() 248 threads[i]->Join(); in TEST_F()
|