Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/googletest/googletest/include/gtest/internal/
HDgtest-string.h114 static std::string ShowWideCString(const wchar_t* wide_c_str);
/freebsd-14-stable/contrib/googletest/googletest/test/
HDgtest_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()
/freebsd-14-stable/contrib/googletest/googletest/src/
HDgtest.cc1310 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()
1313 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()
2106 std::string String::ShowWideCString(const wchar_t* wide_c_str) { in ShowWideCString() function in testing::internal::String