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

1 2 3 4 5 6

  /external/skia/src/utils/
SkOSPath.cpp 10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) {
  /external/skqp/src/utils/
SkOSPath.cpp 10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) {
  /external/sfntly/cpp/src/test/
platform_thread.cc 43 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
79 void PlatformThread::Join(PlatformThreadHandle thread_handle) {
  /external/swiftshader/third_party/LLVM/unittests/ADT/
TripleTest.cpp 106 static std::string Join(StringRef A, StringRef B, StringRef C) {
111 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) {
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(C[0], C[1], C[2], C[3])
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/testing/
join.h 25 // Join a list of data separated by delimieter.
27 string Join(T* data, size_t len, const string& delimiter) {
  /system/core/base/include/android-base/
strings.h 40 std::string Join(const ContainerT& things, SeparatorT separator) {
54 extern template std::string Join(const std::vector<std::string>&, char);
55 extern template std::string Join(const std::vector<const char*>&, char);
56 extern template std::string Join(const std::vector<std::string>&, const std::string&);
57 extern template std::string Join(const std::vector<const char*>&, const std::string&);
  /bionic/tools/versioner/src/
Utils.h 80 static inline std::string Join(Collection c, const std::string& delimiter = ", ") {
  /external/libbrillo/brillo/strings/
string_utils.h 85 std::string Join(const std::string& delimiter, const Container& strings) {
91 inline std::string Join(const std::string& delimiter,
96 inline std::string Join(const std::string& delimiter,
  /external/llvm/unittests/ADT/
TripleTest.cpp 255 static std::string Join(StringRef A, StringRef B, StringRef C) {
260 static std::string Join(StringRef A, StringRef B, StringRef C, StringRef D) {
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(C[0], C[1], C[2], C[3])
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
Join.java 5 public class Join {
6 public static String join(String delimiter, Collection collection) { method in class:Join
19 public static String join(String delimiter, Object... collection) { method in class:Join
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Join.java 6 * Utility class used to join strings together with a delimiter.
8 public class Join {
9 public static String join(String delimiter, Collection collection) { method in class:Join
22 public static String join(String delimiter, Object... collection) { method in class:Join
  /hardware/intel/common/wrs_omxil_core/utils/src/
thread.cpp 42 Join();
62 int Thread::Join(void)
  /device/google/cuttlefish_common/common/vsoc/lib/
lock_test.cpp 55 void Join() {
56 thread_.join();
72 a.Join();
73 b.Join();
  /external/tensorflow/tensorflow/cc/training/
coordinator.cc 35 Join().IgnoreError();
77 Status Coordinator::Join() {
90 ReportStatus(t->Join());
  /external/tensorflow/tensorflow/contrib/mpi/
mpi_server_lib.cc 52 TF_CHECK_OK(Join());
66 Status MPIServer::Join() {
67 Status s = GrpcServer::Join();
  /external/tensorflow/tensorflow/core/lib/strings/
str_util.h 104 // 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) {
168 string Join(const T& s, const char* sep, Formatter f) {
  /external/webrtc/webrtc/base/
thread_checker_unittest.cc 63 // New method. Needed since Thread::Join is protected, and it is called by
65 void Join() {
66 Thread::Join();
87 // New method. Needed since Thread::Join is protected, and it is called by
89 void Join() {
90 Thread::Join();
122 delete_on_thread.Join();
135 call_on_thread.Join();
149 call_on_thread.Join();
174 call_on_thread.Join();
    [all...]
  /prebuilts/go/darwin-x86/src/path/
path.go 152 // Join joins any number of path elements into a single path, adding a
155 func Join(elem ...string) string {
158 return Clean(strings.Join(elem[i:], "/"))
  /prebuilts/go/linux-x86/src/path/
path.go 152 // Join joins any number of path elements into a single path, adding a
155 func Join(elem ...string) string {
158 return Clean(strings.Join(elem[i:], "/"))
  /external/gemmlowp/test/
test_blocking_counter.cc 34 ~Thread() { Join(); }
36 bool Join() const {
78 if (threads[i]->Join()) {
  /external/libchrome/base/threading/
simple_thread.cc 27 << "Joinable SimpleThread destroyed without being Join()ed.";
43 void SimpleThread::Join() {
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();
  /external/tensorflow/tensorflow/contrib/gdr/
gdr_server_lib.cc 81 Status GdrServer::Join() {
86 return GrpcServer::Join();
  /external/tensorflow/tensorflow/contrib/verbs/
verbs_server_lib.cc 43 TF_CHECK_OK(Join());
114 Status VerbsServer::Join() {
115 Status s = GrpcServer::Join();
  /external/skia/infra/bots/recipe_modules/core/resources/
elf_symbolizer.py 47 - 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):
204 self.disambiguation_table[f] = os.path.join(root, f) if (f not in
  /external/skqp/infra/bots/recipe_modules/core/resources/
elf_symbolizer.py 47 - 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):
204 self.disambiguation_table[f] = os.path.join(root, f) if (f not in

Completed in 1069 milliseconds

1 2 3 4 5 6