Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-string.h114 static std::string ShowWideCString(const wchar_t* wide_c_str);
/freebsd-14.2/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc1108 TEST(StringTest, ShowWideCString) { in TEST() argument
1109 EXPECT_STREQ("(null)", String::ShowWideCString(NULL).c_str()); in TEST()
1110 EXPECT_STREQ("", String::ShowWideCString(L"").c_str()); in TEST()
1111 EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str()); in TEST()
/freebsd-14.2/contrib/googletest/googletest/src/
H A Dgtest.cc1284 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()
1287 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()
2080 std::string String::ShowWideCString(const wchar_t* wide_c_str) { in ShowWideCString() function in testing::internal::String