/external/toolchain-utils/compiler_wrapper/ |
D | android_config_test.go | 27 createBisectGoldenInputs(filepath.Join(ctx.tempDir, "clang")), 34 gomaPath := path.Join(ctx.tempDir, "gomacc") 36 defaultPath := filepath.Join(ctx.tempDir, "clang") 37 clangTidyPath := filepath.Join(ctx.tempDir, "clang-tidy") 41 ctx.writeFile(filepath.Join(ctx.tempDir, "/pathenv/clang"), "") 60 WrapperCmd: newGoldenCmd(filepath.Join(ctx.tempDir, "clang++"), mainCc), 81 Env: []string{"PATH=" + filepath.Join(ctx.tempDir, "/pathenv")}, 96 "ANDROID_LLVM_STDERR_REDIRECT=" + filepath.Join(ctx.tempDir, "fallback_stderr"), 99 defaultPath := filepath.Join(ctx.tempDir, "clang")
|
D | clang_flags_test.go | 51 ctx.newCommand(filepath.Join(ctx.tempDir, clangX86_64), mainCc))) 52 if err := verifyPath(cmd, filepath.Join(ctx.tempDir, "somepath/usr/bin/clang")); err != nil { 83 ctx.env = []string{"PATH=" + filepath.Join(ctx.tempDir, "/pathenv")} 84 ctx.writeFile(filepath.Join(ctx.tempDir, "/pathenv/x86_64-cros-linux-gnu-clang"), "") 87 …if err := verifyPath(cmd, filepath.Join(ctx.tempDir, "pathenv/somepath/usr/bin/clang")); err != ni… 99 if err := verifyPath(cmd, filepath.Join(ctx.tempDir, "clang")); err != nil { 262 linkerPath := filepath.Join(ctx.tempDir, "a/b/c") 263 ctx.writeFile(filepath.Join(linkerPath, "x86_64-cros-linux-gnu-ld"), "") 275 realLinkerPath := filepath.Join(ctx.tempDir, "a/original/path/somelinker") 277 firstLinkLinkerPath := filepath.Join(ctx.tempDir, "a/first/somelinker") [all …]
|
D | cros_hardened_config_test.go | 44 gomaPath := path.Join(ctx.tempDir, "gomacc") 69 gomaPath := path.Join(ctx.tempDir, "gomacc") 84 gomaPath := path.Join(ctx.tempDir, "gomacc") 110 …Name: fmt.Sprintf("%s_%s_target_specific.json", compiler, argsReplacer.Replace(strings.Join(args, … 224 ctx.writeFile(filepath.Join(ctx.tempDir, "/pathenv/x86_64-cros-linux-gnu-gcc"), "") 238 WrapperCmd: newGoldenCmd(filepath.Join(ctx.tempDir, "x86_64-cros-linux-gnu-gcc"), mainCc), 250 Env: []string{"PATH=" + filepath.Join(ctx.tempDir, "/pathenv")}, 261 ctx.writeFile(filepath.Join(ctx.tempDir, "/pathenv/x86_64-cros-linux-gnu-clang"), "") 306 WrapperCmd: newGoldenCmd(filepath.Join(ctx.tempDir, "x86_64-cros-linux-gnu-clang"), mainCc), 322 Env: []string{"PATH=" + filepath.Join(ctx.tempDir, "/pathenv")},
|
D | gomacc_flag_test.go | 14 gomaPath := path.Join(ctx.tempDir, "gomacc") 32 gomaPath := path.Join(ctx.tempDir, "gomacc") 44 gomaPath := path.Join(ctx.tempDir, "gomacc") 67 gomaPath := path.Join(ctx.tempDir, "gomacc")
|
D | rusage_flag_test.go | 75 logFileName := filepath.Join(ctx.tempDir, "somedir", "rusage.log") 87 logFileName := filepath.Join(ctx.tempDir, "rusage.log") 113 if logParts[4] != filepath.Join(ctx.tempDir, gccX86_64+".real") { 125 logFileName := filepath.Join(ctx.tempDir, "rusage.log") 167 ctx.env = []string{"GETRUSAGE=" + filepath.Join(ctx.tempDir, "rusage.log")}
|
/external/webrtc/webrtc/base/ |
D | thread_checker_unittest.cc | 65 void Join() { in Join() function in rtc::__anonf43f4f110111::CallDoStuffOnThread 66 Thread::Join(); in Join() 89 void Join() { in Join() function in rtc::__anonf43f4f110111::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/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/tensorflow/tensorflow/core/platform/ |
D | str_util_test.cc | 237 EXPECT_EQ(str_util::Join(s, " "), "hi"); in TEST() 239 EXPECT_EQ(str_util::Join(s, " "), "hi there strings"); in TEST() 243 EXPECT_EQ(str_util::Join(sp, ",,"), "hi"); in TEST() 245 EXPECT_EQ(str_util::Join(sp, "--"), "hi--there--strings"); in TEST() 252 EXPECT_EQ(str_util::Join(s, " ", l1), "hi"); in TEST() 255 EXPECT_EQ(str_util::Join(s, " ", l2), "h t s"); in TEST() 260 EXPECT_EQ(str_util::Join(str_util::Split("a", ','), "|"), "a"); in TEST() 261 EXPECT_EQ(str_util::Join(str_util::Split(",", ','), "|"), "|"); in TEST() 262 EXPECT_EQ(str_util::Join(str_util::Split("a,b,c", ','), "|"), "a|b|c"); in TEST() 263 EXPECT_EQ(str_util::Join(str_util::Split("a,,,b,,c,", ','), "|"), in TEST() [all …]
|
/external/libchrome/base/synchronization/ |
D | lock_unittest.cc | 86 PlatformThread::Join(handle); in TEST() 126 PlatformThread::Join(handle); in TEST() 140 PlatformThread::Join(handle); in TEST() 166 PlatformThread::Join(handle); in TEST() 180 PlatformThread::Join(handle); in TEST() 228 PlatformThread::Join(handle); in TEST() 250 PlatformThread::Join(handle1); in TEST() 251 PlatformThread::Join(handle2); in TEST() 252 PlatformThread::Join(handle3); in TEST()
|
/external/tensorflow/tensorflow/lite/testing/ |
D | join_test.cc | 26 EXPECT_EQ(Join(data.data(), data.size(), ","), "1,2,3"); in TEST() 36 EXPECT_EQ(Join(data, 4, " "), "1 -3 2.29999995 9.99999975e-06"); in TEST() 39 TEST(JoinTest, JoinNullData) { EXPECT_THAT(Join<int>(nullptr, 3, ","), ""); } in TEST() 43 EXPECT_THAT(Join(data.data(), 0, ","), ""); in TEST()
|
/external/golang-protobuf/protoc-gen-go/ |
D | golden_test.go | 82 goldenPath := filepath.Join("testdata", relPath) 232 if err := os.MkdirAll(filepath.Join(workdir, dir), 0777); err != nil { 237 …if err := ioutil.WriteFile(filepath.Join(workdir, "alpha", "a.proto"), []byte(aProto), 0666); err … 241 …if err := ioutil.WriteFile(filepath.Join(workdir, "beta", "b.proto"), []byte(bProto), 0666); err !… 247 "--go_out=" + test.parameters + ":" + filepath.Join(workdir, "out"), 248 filepath.Join(workdir, "alpha", "a.proto"), 252 "--go_out=" + test.parameters + ":" + filepath.Join(workdir, "out"), 253 filepath.Join(workdir, "beta", "b.proto"), 258 outdir := filepath.Join(workdir, "out") 346 t.Log("RUNNING: ", strings.Join(cmd.Args, " "))
|
/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/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/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()
|
/external/boringssl/src/util/ |
D | run_android_tests.go | 248 …if err := goTool("build", "-o", filepath.Join(tmpDir, "util/all_tests"), "util/all_tests.go"); err… 279 …if err := goTool("test", "-c", "-o", filepath.Join(tmpDir, "ssl/test/runner/runner"), "./ssl/test/… 286 if _, err := os.Stat(filepath.Join(*buildDir, "crypto/libcrypto.so")); err == nil { 300 …if err := copyFile(filepath.Join(tmpDir, "build", binary), filepath.Join(*buildDir, binary)); err … 312 …if err := copyFile(filepath.Join(tmpDir, "build", "lib", filepath.Base(library)), filepath.Join(*b… 322 if err := copyFile(filepath.Join(tmpDir, file), file); err != nil {
|
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") 95 extraPath := filepath.Join(topLevelPath, "crypto", lib+"_extra") 107 filenames = append(filenames, filepath.Join(extraPath, extraFilename)) 159 buildingPath := filepath.Join(path, "BUILDING.md") 163 path = filepath.Join("..", path) 164 buildingPath = filepath.Join(path, "BUILDING.md")
|
/external/boringssl/src/util/fipstools/cavp/ |
D | run_cavp.go | 69 return filepath.Join(*suiteDir, t.directory) 449 reqPath := filepath.Join(suite.getDirectory(), "req", test.inFile+".req") 453 reqPathOnDevice = path.Join(androidTmpPath, test.inFile+".req") 462 respDir := filepath.Join(suite.getDirectory(), "resp") 466 outPath := filepath.Join(respDir, test.inFile+".rsp") 477 cmdLine := strings.Join(append([]string{bin}, args...), " ") 513 respPath := filepath.Join(suite.getDirectory(), "resp", test.inFile+".rsp") 520 faxPath := filepath.Join(suite.getDirectory(), "fax", test.inFile+".fax")
|
/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/include/core/ |
D | SkStrokeRec.h | 40 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; } in getJoin() 60 void setStrokeParams(SkPaint::Cap cap, SkPaint::Join join, SkScalar miterLimit) { in setStrokeParams() 117 static SkScalar GetInflationRadius(SkPaint::Join, SkScalar miterLimit, SkPaint::Cap,
|
/external/skqp/include/core/ |
D | SkStrokeRec.h | 40 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; } in getJoin() 60 void setStrokeParams(SkPaint::Cap cap, SkPaint::Join join, SkScalar miterLimit) { in setStrokeParams() 117 static SkScalar GetInflationRadius(SkPaint::Join, SkScalar miterLimit, SkPaint::Cap,
|
/external/skia/src/core/ |
D | SkStroke.h | 38 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; } in getJoin() 39 void setJoin(SkPaint::Join);
|
/external/skqp/src/core/ |
D | SkStroke.h | 38 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; } in getJoin() 39 void setJoin(SkPaint::Join);
|
/external/tensorflow/tensorflow/cc/training/ |
D | coordinator_test.cc | 82 Status Join() override { in Join() function in tensorflow::__anonc57eb4770111::MockQueueRunner 140 TF_EXPECT_OK(coord.Join()); in TEST() 158 TF_EXPECT_OK(coord.Join()); in TEST() 172 TF_EXPECT_OK(coord.Join()); in TEST() 196 EXPECT_EQ(coord.Join().code(), Code::INVALID_ARGUMENT); in TEST() 204 EXPECT_EQ(coord.Join().code(), Code::FAILED_PRECONDITION); in TEST()
|
/external/gemmlowp/test/ |
D | test_blocking_counter.cc | 34 ~Thread() { Join(); } in ~Thread() 36 bool Join() const { in Join() function in gemmlowp::Thread 78 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))
|