Searched refs:ShowWideCString (Results 1 - 25 of 26) sorted by relevance

12

/external/gtest/include/gtest/internal/
H A Dgtest-string.h108 static std::string ShowWideCString(const wchar_t* wide_c_str);
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-string.h108 static std::string ShowWideCString(const wchar_t* wide_c_str);
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest-message.h168 return *this << internal::String::ShowWideCString(wide_c_str);
171 return *this << internal::String::ShowWideCString(wide_c_str);
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h168 return *this << internal::String::ShowWideCString(wide_c_str);
171 return *this << internal::String::ShowWideCString(wide_c_str);
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-message.h168 return *this << internal::String::ShowWideCString(wide_c_str);
171 return *this << internal::String::ShowWideCString(wide_c_str);
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h169 return *this << internal::String::ShowWideCString(wide_c_str);
172 return *this << internal::String::ShowWideCString(wide_c_str);
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-string.h140 static String ShowWideCString(const wchar_t* wide_c_str);
142 // Similar to ShowWideCString(), except that this function encloses
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h140 static String ShowWideCString(const wchar_t* wide_c_str);
142 // Similar to ShowWideCString(), except that this function encloses
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-string.h140 static String ShowWideCString(const wchar_t* wide_c_str);
142 // Similar to ShowWideCString(), except that this function encloses
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h140 static String ShowWideCString(const wchar_t* wide_c_str);
142 // Similar to ShowWideCString(), except that this function encloses
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc1165 // Tests String::ShowWideCString().
1166 TEST(StringTest, ShowWideCString) {
1168 String::ShowWideCString(NULL).c_str());
1169 EXPECT_STREQ("", String::ShowWideCString(L"").c_str());
1170 EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str());
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest_unittest.cc1300 // Tests String::ShowWideCString().
1301 TEST(StringTest, ShowWideCString) {
1303 String::ShowWideCString(NULL).c_str());
1304 EXPECT_STREQ("", String::ShowWideCString(L"").c_str());
1305 EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str());
/external/gtest/test/
H A Dgtest_unittest.cc1038 // Tests String::ShowWideCString().
1039 TEST(StringTest, ShowWideCString) {
1041 String::ShowWideCString(NULL).c_str());
1042 EXPECT_STREQ("", String::ShowWideCString(L"").c_str());
1043 EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str());
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest_unittest.cc1038 // Tests String::ShowWideCString().
1039 TEST(StringTest, ShowWideCString) {
1041 String::ShowWideCString(NULL).c_str());
1042 EXPECT_STREQ("", String::ShowWideCString(L"").c_str());
1043 EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str());
/external/gtest/src/
H A Dgtest.cc920 return *this << internal::String::ShowWideCString(wide_c_str);
923 return *this << internal::String::ShowWideCString(wide_c_str);
1525 std::string String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
H A Dgtest.cc920 return *this << internal::String::ShowWideCString(wide_c_str);
923 return *this << internal::String::ShowWideCString(wide_c_str);
1525 std::string String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc2404 return *this << internal::String::ShowWideCString(wide_c_str);
2407 return *this << internal::String::ShowWideCString(wide_c_str);
3009 std::string String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest-all.cc2404 return *this << internal::String::ShowWideCString(wide_c_str);
2407 return *this << internal::String::ShowWideCString(wide_c_str);
3009 std::string String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest.cc1531 String String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
1537 // Similar to ShowWideCString(), except that this function encloses
1543 String::ShowWideCString(wide_c_str).c_str());
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc1530 String String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
1536 // Similar to ShowWideCString(), except that this function encloses
1542 String::ShowWideCString(wide_c_str).c_str());
/external/mesa3d/src/gtest/src/
H A Dgtest.cc1530 String String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
1536 // Similar to ShowWideCString(), except that this function encloses
1542 String::ShowWideCString(wide_c_str).c_str());
/external/protobuf/gtest/src/
H A Dgtest.cc1551 String String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
1557 // Similar to ShowWideCString(), except that this function encloses
1563 String::ShowWideCString(wide_c_str).c_str());
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest-all.cc2891 String String::ShowWideCString(const wchar_t * wide_c_str) { function in class:testing::internal::String
2897 // Similar to ShowWideCString(), except that this function encloses
2903 String::ShowWideCString(wide_c_str).c_str());
H A Dgtest.h2712 static String ShowWideCString(const wchar_t* wide_c_str);
2714 // Similar to ShowWideCString(), except that this function encloses
8039 return *this << internal::String::ShowWideCString(wide_c_str);
8042 return *this << internal::String::ShowWideCString(wide_c_str);
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h3429 static std::string ShowWideCString(const wchar_t* wide_c_str);

Completed in 733 milliseconds

12