Searched defs:Join (Results 1 - 25 of 66) sorted by relevance

123

/external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
H A DJoin.java8 public class Join { class
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
H A DJoin.java5 public class Join { class
/external/sfntly/cpp/src/test/
H A Dplatform_thread.cc43 void PlatformThread::Join(PlatformThreadHandle thread_handle) { function in class:sfntly::PlatformThread
79 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
/external/skia/src/utils/
H A DSkOSPath.cpp10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) { function in class:SkOSPath
/external/skqp/src/utils/
H A DSkOSPath.cpp10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) { function in class:SkOSPath
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DTripleTest.cpp106 static std::string Join(StringRef A, StringRef B, StringRef C) { function in namespace:__anon23173
111 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) { function in namespace:__anon23173
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/tensorflow/tensorflow/contrib/lite/testing/
H A Djoin.h25 // Join a list of data separated by delimieter.
27 string Join(T* data, size_t len, const string& delimiter) { function in namespace:tflite::testing
/external/llvm/unittests/ADT/
H A DTripleTest.cpp255 static std::string Join(StringRef A, StringRef B, StringRef C) { function in namespace:__anon14955
260 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) { function in namespace:__anon14955
317 std::string E = Join(C[0], C[1], C[2]);
318 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[1], C[2])));
320 EXPECT_EQ(E, Triple::normalize(Join(C[0], C[2], C[1])));
321 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[2], C[0])));
322 EXPECT_EQ(E, Triple::normalize(Join(C[1], C[0], C[2])));
323 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[0], C[1])));
324 EXPECT_EQ(E, Triple::normalize(Join(C[2], C[1], C[0])));
330 std::string F = Join(
[all...]
/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::__anon30615::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::__anon30615::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/libbrillo/brillo/strings/
H A Dstring_utils.h85 std::string Join(const std::string& delimiter, const Container& strings) { function in namespace:brillo::string_utils
91 inline std::string Join(const std::string& delimiter, function in namespace:brillo::string_utils
96 inline std::string Join(const std::string& delimiter, function in namespace:brillo::string_utils
/external/tensorflow/tensorflow/cc/training/
H A Dcoordinator.cc35 Join().IgnoreError();
77 Status Coordinator::Join() { function in class:tensorflow::Coordinator
90 ReportStatus(t->Join());
H A Dqueue_runner.cc85 Join().IgnoreError();
139 Status QueueRunner::Join() { function in class:tensorflow::QueueRunner
/external/tensorflow/tensorflow/contrib/mpi/
H A Dmpi_server_lib.cc52 TF_CHECK_OK(Join());
66 Status MPIServer::Join() { function in class:tensorflow::MPIServer
67 Status s = GrpcServer::Join();
/external/gemmlowp/test/
H A Dtest_blocking_counter.cc34 ~Thread() { Join(); }
36 bool Join() const { function in class:gemmlowp::Thread
78 if (threads[i]->Join()) {
/external/libchrome/base/threading/
H A Dsimple_thread.cc27 << "Joinable SimpleThread destroyed without being Join()ed.";
43 void SimpleThread::Join() { function in class:base::SimpleThread
45 DCHECK(HasBeenStarted()) << "Tried to Join a never-started thread.";
46 DCHECK(!HasBeenJoined()) << "Tried to Join a thread multiple times.";
47 PlatformThread::Join(thread_);
124 // Join and destroy all the worker threads.
126 threads_[i]->Join();
H A Dplatform_thread_posix.cc213 void PlatformThread::Join(PlatformThreadHandle thread_handle) { function in class:base::PlatformThread
/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/tensorflow/tensorflow/contrib/gdr/
H A Dgdr_server_lib.cc81 Status GdrServer::Join() { function in class:tensorflow::GdrServer
86 return GrpcServer::Join();
/external/tensorflow/tensorflow/contrib/verbs/
H A Dverbs_server_lib.cc43 TF_CHECK_OK(Join());
114 Status VerbsServer::Join() { function in class:tensorflow::VerbsServer
115 Status s = GrpcServer::Join();
/external/tensorflow/tensorflow/core/lib/strings/
H A Dstr_util.h104 // Join functionality
106 string Join(const T& s, const char* sep);
108 // A variant of Join where for each element of "s", f(&dest_string, elem)
112 string Join(const T& s, const char* sep, Formatter f);
147 string Join(const T& s, const char* sep) { function in namespace:tensorflow::str_util
168 string Join(const T& s, const char* sep, Formatter f) { function in namespace:tensorflow::str_util
/external/skia/infra/bots/recipe_modules/core/resources/
H A Delf_symbolizer.py47 - Join(): called to conclude the batch to gather the last outstanding results.
48 In essence, before the Join method returns, this class will have issued as
186 def Join(self): member in class:ELFSymbolizer
/external/skqp/infra/bots/recipe_modules/core/resources/
H A Delf_symbolizer.py47 - Join(): called to conclude the batch to gather the last outstanding results.
48 In essence, before the Join method returns, this class will have issued as
186 def Join(self): member in class:ELFSymbolizer
/external/llvm/lib/CodeGen/
H A DSafeStackColoring.h56 void Join(const LiveRange &Other) { bv |= Other.bv; } function in struct:llvm::safestack::StackColoring::LiveRange
/external/protobuf/src/google/protobuf/stubs/
H A Donce_unittest.cc85 if (!joined_) Join();
92 void Join() { function in class:google::protobuf::__anon19072::OnceInitTest::TestThread
217 threads[i]->Join();
248 threads[i]->Join();
/external/swiftshader/third_party/LLVM/lib/MC/
H A DSubtargetFeature.cpp90 /// 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) { function
186 return Join(Features);

Completed in 2686 milliseconds

123