Home
last modified time | relevance | path

Searched refs:kWorld (Results 1 – 7 of 7) sorted by relevance

/external/libmojo/mojo/public/cpp/system/tests/
Dcore_unittest.cc274 const char kWorld[] = "world!"; in TEST() local
275 const uint32_t kWorldSize = static_cast<uint32_t>(sizeof(kWorld)); in TEST()
278 kWorld, in TEST()
347 EXPECT_STREQ(kWorld, buffer); in TEST()
372 const char kWorld[] = "world!"; in TEST() local
373 const uint32_t kWorldSize = static_cast<uint32_t>(sizeof(kWorld)); in TEST()
376 kWorld, in TEST()
384 kWorld, in TEST()
426 const char kWorld[] = "world!"; in TEST() local
427 const uint32_t kWorldSize = static_cast<uint32_t>(sizeof(kWorld)); in TEST()
[all …]
/external/libmojo/mojo/public/c/system/tests/
Dcore_unittest.cc239 static const char kWorld[] = "world"; in TEST() local
240 ASSERT_GE(buffer_size, sizeof(kWorld)); in TEST()
242 memcpy(write_pointer, kWorld, sizeof(kWorld)); in TEST()
244 MojoEndWriteData(hp, static_cast<uint32_t>(sizeof(kWorld)))); in TEST()
/external/libmojo/mojo/edk/system/
Dcore_unittest.cc680 const char kWorld[] = "world!!!"; in TEST_F() local
681 const uint32_t kWorldSize = static_cast<uint32_t>(sizeof(kWorld)); in TEST_F()
758 core()->WriteMessage(h_passing[0], kWorld, kWorldSize, in TEST_F()
775 ASSERT_STREQ(kWorld, buffer); in TEST_F()
1025 const char kWorld[] = "world!!!"; in TEST_F() local
1026 const uint32_t kWorldSize = static_cast<uint32_t>(sizeof(kWorld)); in TEST_F()
1078 core()->WriteData(ph, kWorld, &num_bytes, in TEST_F()
1092 ASSERT_STREQ(kWorld, buffer); in TEST_F()
1096 core()->WriteMessage(h_passing[0], kWorld, kWorldSize, &ph, 1, in TEST_F()
1112 ASSERT_STREQ(kWorld, buffer); in TEST_F()
[all …]
Dmultiprocess_message_pipe_unittest.cc273 static const char kWorld[] = "world!!!"; in DEFINE_TEST_CLIENT_WITH_PIPE() local
274 CHECK_EQ(memcmp(buffer, kWorld, sizeof(kWorld)), 0); in DEFINE_TEST_CLIENT_WITH_PIPE()
336 static const char kWorld[] = "world!!!"; in TEST_F() local
337 memcpy(buffer, kWorld, sizeof(kWorld)); in TEST_F()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DZoneMeta.java55 private static final String kWorld = "001"; field in ZoneMeta
141 if (region != null && !region.equals(kWorld)) { in getCanonicalSystemLocationZIDs()
455 if (country != null && country.equals(kWorld)) { in getCanonicalCountry()
470 if (country != null && country.equals(kWorld)) { in getCanonicalCountry()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DZoneMeta.java56 private static final String kWorld = "001"; field in ZoneMeta
142 if (region != null && !region.equals(kWorld)) { in getCanonicalSystemLocationZIDs()
456 if (country != null && country.equals(kWorld)) { in getCanonicalCountry()
471 if (country != null && country.equals(kWorld)) { in getCanonicalCountry()
/external/libmojo/mojo/edk/embedder/
Dembedder_unittest.cc154 const std::string kWorld = "world!!!"; in TEST_F() local
155 WriteMessageWithHandles(server_mp, kWorld, &h1, 1); in TEST_F()
163 EXPECT_EQ(kWorld, ReadMessageWithHandles(client_mp, &h1, 1)); in TEST_F()