Searched refs:CodePointToUtf8 (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc242 using testing::internal::CodePointToUtf8;
526 // Tests CodePointToUtf8().
530 EXPECT_EQ("", CodePointToUtf8(L'\0'));
535 EXPECT_EQ("a", CodePointToUtf8(L'a'));
536 EXPECT_EQ("Z", CodePointToUtf8(L'Z'));
537 EXPECT_EQ("&", CodePointToUtf8(L'&'));
538 EXPECT_EQ("\x7F", CodePointToUtf8(L'\x7F'));
545 EXPECT_EQ("\xC3\x93", CodePointToUtf8(L'\xD3'));
552 CodePointToUtf8(static_cast<wchar_t>(0x576)));
560 CodePointToUtf8(static_cas
[all...]
/external/gtest/test/
H A Dgtest_unittest.cc243 using testing::internal::CodePointToUtf8;
533 // Tests CodePointToUtf8().
537 EXPECT_EQ("", CodePointToUtf8(L'\0'));
542 EXPECT_EQ("a", CodePointToUtf8(L'a'));
543 EXPECT_EQ("Z", CodePointToUtf8(L'Z'));
544 EXPECT_EQ("&", CodePointToUtf8(L'&'));
545 EXPECT_EQ("\x7F", CodePointToUtf8(L'\x7F'));
552 EXPECT_EQ("\xC3\x93", CodePointToUtf8(L'\xD3'));
559 CodePointToUtf8(static_cast<wchar_t>(0x576)));
567 CodePointToUtf8(static_cas
[all...]
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc154 using testing::internal::CodePointToUtf8;
329 // Tests CodePointToUtf8().
334 EXPECT_STREQ("", CodePointToUtf8(L'\0', buffer));
340 EXPECT_STREQ("a", CodePointToUtf8(L'a', buffer));
341 EXPECT_STREQ("Z", CodePointToUtf8(L'Z', buffer));
342 EXPECT_STREQ("&", CodePointToUtf8(L'&', buffer));
343 EXPECT_STREQ("\x7F", CodePointToUtf8(L'\x7F', buffer));
351 EXPECT_STREQ("\xC3\x93", CodePointToUtf8(L'\xD3', buffer));
354 EXPECT_STREQ("\xD5\xB6", CodePointToUtf8(L'\x576', buffer));
362 EXPECT_STREQ("\xE0\xA3\x93", CodePointToUtf8(
[all...]
/external/chromium_org/testing/gtest/src/
H A Dgtest-internal-inl.h232 GTEST_API_ std::string CodePointToUtf8(UInt32 code_point);
H A Dgtest.cc1720 std::string CodePointToUtf8(UInt32 code_point) { function in namespace:testing::internal
1802 stream << CodePointToUtf8(unicode_code_point);
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-internal-inl.h223 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
H A Dgtest.cc1435 char* CodePointToUtf8(UInt32 code_point, char* str) { function in namespace:testing::internal
1522 char buffer[32]; // CodePointToUtf8 requires a buffer this big.
1523 stream << CodePointToUtf8(unicode_code_point, buffer);
/external/gtest/src/
H A Dgtest-internal-inl.h232 GTEST_API_ std::string CodePointToUtf8(UInt32 code_point);
H A Dgtest.cc1436 std::string CodePointToUtf8(UInt32 code_point) { function in namespace:testing::internal
1518 stream << CodePointToUtf8(unicode_code_point);
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-internal-inl.h222 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
H A Dgtest.cc1435 char* CodePointToUtf8(UInt32 code_point, char* str) { function in namespace:testing::internal
1522 char buffer[32]; // CodePointToUtf8 requires a buffer this big.
1523 stream << CodePointToUtf8(unicode_code_point, buffer);
/external/mesa3d/src/gtest/src/
H A Dgtest-internal-inl.h223 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
H A Dgtest.cc1435 char* CodePointToUtf8(UInt32 code_point, char* str) { function in namespace:testing::internal
1522 char buffer[32]; // CodePointToUtf8 requires a buffer this big.
1523 stream << CodePointToUtf8(unicode_code_point, buffer);
/external/protobuf/gtest/src/
H A Dgtest-internal-inl.h196 char* CodePointToUtf8(UInt32 code_point, char* str);
H A Dgtest.cc945 char buffer[32]; // CodePointToUtf8 requires a buffer that big.
947 << (wchar ? CodePointToUtf8(static_cast<UInt32>(wchar), buffer) : "\\0")
1420 char* CodePointToUtf8(UInt32 code_point, char* str) { function in namespace:testing::internal
1507 char buffer[32]; // CodePointToUtf8 requires a buffer this big.
1508 stream << CodePointToUtf8(unicode_code_point, buffer);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc633 GTEST_API_ std::string CodePointToUtf8(UInt32 code_point);
2920 std::string CodePointToUtf8(UInt32 code_point) { function in namespace:testing::internal
3002 stream << CodePointToUtf8(unicode_code_point);
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc633 GTEST_API_ std::string CodePointToUtf8(UInt32 code_point);
2920 std::string CodePointToUtf8(UInt32 code_point) { function in namespace:testing::internal
3002 stream << CodePointToUtf8(unicode_code_point);

Completed in 5693 milliseconds