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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_JoinTest.java 20 import android.graphics.Paint.Join;
26 assertEquals(Join.BEVEL, Join.valueOf("BEVEL"));
27 assertEquals(Join.MITER, Join.valueOf("MITER"));
28 assertEquals(Join.ROUND, Join.valueOf("ROUND"));
33 Join[] actual = Join.values();
36 assertEquals(Join.MITER, actual[0])
    [all...]
  /external/skia/tools/
get_images_from_skps.cpp 28 sk_mkdir(SkOSPath::Join(gOutputDir, ext).c_str());
42 path = SkOSPath::Join(SkOSPath::Join(gOutputDir, "jpg").c_str(), "");
47 path = SkOSPath::Join(SkOSPath::Join(gOutputDir, "png").c_str(), "");
52 path = SkOSPath::Join(SkOSPath::Join(gOutputDir, "gif").c_str(), "");
57 path = SkOSPath::Join(SkOSPath::Join(gOutputDir, "webp").c_str(), "");
62 path = SkOSPath::Join(SkOSPath::Join(gOutputDir, "bmp").c_str(), "")
    [all...]
  /external/regex-re2/util/
thread.h 15 void Join();
  /external/selinux/policycoreutils/mcstrans/share/examples/pipes/setrans.d/
pipes.conf 6 Join=,
  /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...]
  /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&);
  /external/skia/src/core/
SkStroke.h 37 SkPaint::Join getJoin() const { return (SkPaint::Join)fJoin; }
38 void setJoin(SkPaint::Join);
  /external/libweave/src/
string_utils_unittest.cc 127 EXPECT_EQ("", Join(",", std::vector<std::string>{}));
128 EXPECT_EQ("abc", Join(",", std::vector<std::string>{"abc"}));
129 EXPECT_EQ("abc,,xyz", Join(",", std::vector<std::string>{"abc", "", "xyz"}));
130 EXPECT_EQ("abc,defg", Join(",", std::vector<std::string>{"abc", "defg"}));
131 EXPECT_EQ("1 : 2 : 3", Join(" : ", std::vector<std::string>{"1", "2", "3"}));
132 EXPECT_EQ("1:2", Join(":", std::set<std::string>{"1", "2"}));
133 EXPECT_EQ("1:2", Join(":", std::vector<std::string>{"1", "2"}));
134 EXPECT_EQ("1:2", Join(":", std::list<std::string>{"1", "2"}));
135 EXPECT_EQ("123", Join("", std::vector<std::string>{"1", "2", "3"}));
139 EXPECT_EQ("ab,cd", Join(",", "ab", "cd"))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java 9 // Parser for Join Header (RFC3911)
12 // Join = "Join" HCOLON callid *(SEMI join-param)
13 // join-param = to-tag / from-tag / generic-param
48 Join join = new Join(); local
52 super.parse(join);
53 join.setCallId(callId)
    [all...]
  /external/v8/src/libplatform/
worker-thread.cc 20 Join();
  /hardware/intel/common/wrs_omxil_core/utils/inc/
thread.h 39 int Join(void);
  /system/core/libmemunreachable/
PtracerThread.h 38 int Join();
  /external/v8/test/unittests/libplatform/
task-queue-unittest.cc 55 thread1.Join();
56 thread2.Join();
  /hardware/intel/common/wrs_omxil_core/utils/src/
thread.cpp 40 Join();
60 int Thread::Join(void)
  /external/libchrome/base/threading/
thread_checker_unittest.cc 103 delete_on_thread.Join();
116 call_on_thread.Join();
130 call_on_thread.Join();
155 call_on_thread.Join();
non_thread_safe_unittest.cc 104 delete_on_thread.Join();
118 call_on_thread.Join();
143 delete_on_thread.Join();
  /external/sfntly/cpp/src/test/
platform_thread.h 58 // NOTE: When you are done with the thread handle, you must call Join to
66 static void Join(PlatformThreadHandle thread_handle);
lock_test.cc 94 PlatformThread::Join(handle);
136 PlatformThread::Join(handle);
150 PlatformThread::Join(handle);
200 PlatformThread::Join(handle);
223 PlatformThread::Join(handle1);
224 PlatformThread::Join(handle2);
225 PlatformThread::Join(handle3);
  /system/core/base/
strings.cpp 84 template std::string Join(const std::vector<std::string>&, char);
85 template std::string Join(const std::vector<const char*>&, char);
86 template std::string Join(const std::vector<std::string>&, const std::string&);
87 template std::string Join(const std::vector<const char*>&, const std::string&);
  /external/gemmlowp/test/
test_blocking_counter.cc 33 ~Thread() { Join(); }
35 bool Join() const {
73 if (threads[i]->Join()) {
  /system/netd/server/
StrictControllerTest.cpp 100 std::string commandsCommon = android::base::Join(common, '\n');
101 std::string commands4 = android::base::Join(v4, '\n');
102 std::string commands6 = android::base::Join(v6, '\n');
  /external/libbrillo/brillo/strings/
string_utils_unittest.cc 123 EXPECT_EQ("", string_utils::Join(",", {}));
124 EXPECT_EQ("abc", string_utils::Join(",", {"abc"}));
125 EXPECT_EQ("abc,,xyz", string_utils::Join(",", {"abc", "", "xyz"}));
126 EXPECT_EQ("abc,defg", string_utils::Join(",", {"abc", "defg"}));
127 EXPECT_EQ("1 : 2 : 3", string_utils::Join(" : ", {"1", "2", "3"}));
128 EXPECT_EQ("1:2", string_utils::Join(":", std::set<std::string>{"1", "2"}));
129 EXPECT_EQ("1:2", string_utils::Join(":", std::vector<std::string>{"1", "2"}));
130 EXPECT_EQ("1:2", string_utils::Join(":", std::list<std::string>{"1", "2"}));
131 EXPECT_EQ("123", string_utils::Join("", {"1", "2", "3"}));
135 EXPECT_EQ("ab,cd", string_utils::Join(",", "ab", "cd"))
    [all...]
  /external/libchrome/base/synchronization/
lock_unittest.cc 85 PlatformThread::Join(handle);
125 PlatformThread::Join(handle);
139 PlatformThread::Join(handle);
186 PlatformThread::Join(handle);
208 PlatformThread::Join(handle1);
209 PlatformThread::Join(handle2);
210 PlatformThread::Join(handle3);
  /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/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextUtils.java 6 import com.xtremelabs.robolectric.util.Join;
47 public static String join(CharSequence delimiter, Iterable tokens) { method in class:ShadowTextUtils
48 return Join.join((String) delimiter, (Collection) tokens);
52 public static String join(CharSequence delimiter, Object[] tokens) { method in class:ShadowTextUtils
53 return Join.join((String) delimiter, tokens);

Completed in 432 milliseconds

1 2 3 4 5 6 7 8 91011>>