Home
last modified time | relevance | path

Searched refs:ShowWideCString (Results 1 – 3 of 3) sorted by relevance

/src/contrib/googletest/googletest/include/gtest/internal/ !
H A Dgtest-string.h114 static std::string ShowWideCString(const wchar_t* wide_c_str);
/src/contrib/googletest/googletest/test/ !
H A Dgtest_unittest.cc1112 TEST(StringTest, ShowWideCString) { in TEST() argument
1113 EXPECT_STREQ("(null)", String::ShowWideCString(NULL).c_str()); in TEST()
1114 EXPECT_STREQ("", String::ShowWideCString(L"").c_str()); in TEST()
1115 EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str()); in TEST()
/src/contrib/googletest/googletest/src/ !
H A Dgtest.cc1322 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()
1325 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()
2133 std::string String::ShowWideCString(const wchar_t* wide_c_str) { in ShowWideCString() function in testing::internal::String