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

12 3 4 5 6

  /external/tensorflow/tensorflow/cc/training/
queue_runner.cc 85 Join().IgnoreError();
139 Status QueueRunner::Join() {
  /prebuilts/go/darwin-x86/misc/cgo/testsanitizers/
cc_test.go 96 t.Fatalf("%#q exited with %v\n%s", strings.Join(cmd.Args, " "), err, out)
288 replaceEnv(cmd, "CGO_CFLAGS", strings.Join(c.cFlags, " "))
289 replaceEnv(cmd, "CGO_LDFLAGS", strings.Join(c.ldFlags, " "))
322 src := filepath.Join(dir, "return0.c")
327 dst := filepath.Join(dir, "return0")
341 return true, fmt.Errorf("%#q failed: %v\n%s", strings.Join(cmd.Args, " "), err, out)
346 return true, fmt.Errorf("%#q failed to produce executable: %v", strings.Join(cmd.Args, " "), err)
349 return true, fmt.Errorf("%#q generated broken executable: %v\n%s", strings.Join(cmd.Args, " "), err, snippet)
386 return false, fmt.Errorf("%#q exited with %v\n%s", strings.Join(cmd.Args, " "), err, out)
396 return filepath.Join("src", path
    [all...]
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 204 // Join joins any number of path elements into a single path, adding
205 // a Separator if necessary. Join calls Clean on the result; in particular,
209 func Join(elem ...string) string {
210 return join(elem)
252 return Join(wd, path), nil
257 // Join(basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
374 filename := Join(path, name)
  /prebuilts/go/linux-x86/misc/cgo/testsanitizers/
cc_test.go 96 t.Fatalf("%#q exited with %v\n%s", strings.Join(cmd.Args, " "), err, out)
288 replaceEnv(cmd, "CGO_CFLAGS", strings.Join(c.cFlags, " "))
289 replaceEnv(cmd, "CGO_LDFLAGS", strings.Join(c.ldFlags, " "))
322 src := filepath.Join(dir, "return0.c")
327 dst := filepath.Join(dir, "return0")
341 return true, fmt.Errorf("%#q failed: %v\n%s", strings.Join(cmd.Args, " "), err, out)
346 return true, fmt.Errorf("%#q failed to produce executable: %v", strings.Join(cmd.Args, " "), err)
349 return true, fmt.Errorf("%#q generated broken executable: %v\n%s", strings.Join(cmd.Args, " "), err, snippet)
386 return false, fmt.Errorf("%#q exited with %v\n%s", strings.Join(cmd.Args, " "), err, out)
396 return filepath.Join("src", path
    [all...]
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 204 // Join joins any number of path elements into a single path, adding
205 // a Separator if necessary. Join calls Clean on the result; in particular,
209 func Join(elem ...string) string {
210 return join(elem)
252 return Join(wd, path), nil
257 // Join(basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
374 filename := Join(path, name)
  /system/core/libmemunreachable/
PtracerThread.cpp 87 Join();
116 int PtracerThread::Join() {
  /external/libchrome/base/threading/
platform_thread_posix.cc 213 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
  /external/llvm/lib/CodeGen/
SafeStackColoring.h 56 void Join(const LiveRange &Other) { bv |= Other.bv; }
  /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 85 if (!joined_) Join();
92 void Join() {
217 threads[i]->Join();
248 threads[i]->Join();
strutil.h 751 // Join()
756 void Join(Iterator start, Iterator end,
767 string Join(const Range& components,
770 Join(components.begin(), components.end(), delim, &result);
    [all...]
  /external/swiftshader/third_party/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) {
186 return Join(Features);
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_server_lib.cc 77 TF_CHECK_OK(Join());
354 Status GrpcServer::Join() {
grpc_worker_service.cc 114 worker_thread->Join();
138 void Join() { thread_.reset(); } // Blocks until thread exits
  /external/valgrind/drd/tests/
annotate_smart_pointer.cpp 86 void Join()
149 void Join()
328 q->Join();
  /external/webrtc/webrtc/base/
thread.cc 249 void Thread::Join() {
253 LOG(LS_WARNING) << "Waiting for the thread to join, "
317 Join();
392 // only via Join, so Send must complete.
  /prebuilts/go/darwin-x86/src/bytes/
bytes.go 380 // Join concatenates the elements of s to create a new byte slice. The separator
382 func Join(s [][]byte, sep []byte) []byte {
  /prebuilts/go/darwin-x86/src/strings/
strings.go 413 // Join concatenates the elements of a to create a single string. The separator string
415 func Join(a []string, sep string) string {
  /prebuilts/go/linux-x86/src/bytes/
bytes.go 380 // Join concatenates the elements of s to create a new byte slice. The separator
382 func Join(s [][]byte, sep []byte) []byte {
  /prebuilts/go/linux-x86/src/strings/
strings.go 413 // Join concatenates the elements of a to create a single string. The separator string
415 func Join(a []string, sep string) string {
  /art/cmdline/
cmdline_types.h 379 std::string Join() const {
380 return android::base::Join(list_, Separator);
  /build/soong/android/
paths.go 102 // directory, and OutputPath.Join("foo").Rel() would return "foo".
233 prefix := filepath.Join(ctx.Config().srcDir, ctx.ModuleDir()) + "/"
260 path := filepath.Join(ctx.Config().srcDir, ctx.ModuleDir(), def)
467 p.path = filepath.Join(p.path, rel)
609 return filepath.Join(p.config.srcDir, p.path)
612 // Join creates a new SourcePath with paths... joined with the current path. The
614 func (p SourcePath) Join(ctx PathContext, paths ...string) SourcePath {
634 dir := filepath.Join(p.config.srcDir, p.path, relDir)
681 return filepath.Join(p.config.buildDir, p.path)
688 // Join creates a new OutputPath with paths... joined with the current path. Th
    [all...]
  /external/googletest/googletest/src/
gtest-port.cc 382 Join();
385 void ThreadWithParamBase::Join() {
387 << "Failed to join the thread with error " << ::GetLastError() << ".";
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 382 Join();
385 void ThreadWithParamBase::Join() {
387 << "Failed to join the thread with error " << ::GetLastError() << ".";
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerTraceState.cpp 150 static LabelRange Join(LabelRange LR1, LabelRange LR2) {
155 LabelRange &Join(LabelRange LR) {
156 return *this = Join(*this, LR);
304 return LR = LabelRange::Join(GetLabelRange(LI->l1), GetLabelRange(LI->l2));

Completed in 701 milliseconds

12 3 4 5 6