Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-string.h108 static std::string ShowWideCString(const wchar_t* wide_c_str);
/freebsd-13.1/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc1054 TEST(StringTest, ShowWideCString) { in TEST() argument
1056 String::ShowWideCString(NULL).c_str()); in TEST()
1057 EXPECT_STREQ("", String::ShowWideCString(L"").c_str()); in TEST()
1058 EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str()); in TEST()
/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest.cc1004 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()
1007 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()
1898 std::string String::ShowWideCString(const wchar_t * wide_c_str) { in ShowWideCString() function in testing::internal::String