Searched refs:wide_c_str (Results 1 – 3 of 3) sorted by relevance
206 Message& operator<<(const wchar_t* wide_c_str);207 Message& operator<<(wchar_t* wide_c_str);
114 static std::string ShowWideCString(const wchar_t* wide_c_str);
1309 Message& Message::operator<<(const wchar_t* wide_c_str) { in operator <<() argument1310 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()1312 Message& Message::operator<<(wchar_t* wide_c_str) { in operator <<() argument1313 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()2106 std::string String::ShowWideCString(const wchar_t* wide_c_str) { in ShowWideCString() argument2107 if (wide_c_str == nullptr) return "(null)"; in ShowWideCString()2109 return internal::WideStringToUtf8(wide_c_str, -1); in ShowWideCString()