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

/external/chromium/testing/gtest/test/
H A Dgtest_unittest.cc152 using testing::internal::CodePointToUtf8;
352 // Tests CodePointToUtf8().
357 EXPECT_STREQ("", CodePointToUtf8(L'\0', buffer));
363 EXPECT_STREQ("a", CodePointToUtf8(L'a', buffer));
364 EXPECT_STREQ("Z", CodePointToUtf8(L'Z', buffer));
365 EXPECT_STREQ("&", CodePointToUtf8(L'&', buffer));
366 EXPECT_STREQ("\x7F", CodePointToUtf8(L'\x7F', buffer));
374 EXPECT_STREQ("\xC3\x93", CodePointToUtf8(L'\xD3', buffer));
381 CodePointToUtf8(static_cast<wchar_t>(0x576), buffer));
390 CodePointToUtf8(static_cas
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc229 using testing::internal::CodePointToUtf8;
528 // Tests CodePointToUtf8().
532 EXPECT_EQ("", CodePointToUtf8(L'\0'));
537 EXPECT_EQ("a", CodePointToUtf8(L'a'));
538 EXPECT_EQ("Z", CodePointToUtf8(L'Z'));
539 EXPECT_EQ("&", CodePointToUtf8(L'&'));
540 EXPECT_EQ("\x7F", CodePointToUtf8(L'\x7F'));
547 EXPECT_EQ("\xC3\x93", CodePointToUtf8(L'\xD3'));
554 CodePointToUtf8(static_cast<wchar_t>(0x576)));
562 CodePointToUtf8(static_cas
[all...]
/external/gtest/test/
H A Dgtest_unittest.cc152 using testing::internal::CodePointToUtf8;
352 // Tests CodePointToUtf8().
357 EXPECT_STREQ("", CodePointToUtf8(L'\0', buffer));
363 EXPECT_STREQ("a", CodePointToUtf8(L'a', buffer));
364 EXPECT_STREQ("Z", CodePointToUtf8(L'Z', buffer));
365 EXPECT_STREQ("&", CodePointToUtf8(L'&', buffer));
366 EXPECT_STREQ("\x7F", CodePointToUtf8(L'\x7F', buffer));
374 EXPECT_STREQ("\xC3\x93", CodePointToUtf8(L'\xD3', buffer));
381 CodePointToUtf8(static_cast<wchar_t>(0x576), buffer));
390 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/testing/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/chromium_org/testing/gtest/src/
H A Dgtest-internal-inl.h232 GTEST_API_ std::string CodePointToUtf8(UInt32 code_point);
H A Dgtest.cc1421 std::string CodePointToUtf8(UInt32 code_point) { function in namespace:testing::internal
1503 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.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/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h222 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
/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/open-vcdiff/gtest/src/
H A Dgtest-internal-inl.h200 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")
1450 char* CodePointToUtf8(UInt32 code_point, char* str) { function in namespace:testing::internal
1537 char buffer[32]; // CodePointToUtf8 requires a buffer this big.
1538 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/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);
/external/llvm/utils/unittest/googletest/
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);

Completed in 300 milliseconds