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);
1321 Message& Message::operator<<(const wchar_t* wide_c_str) { in operator <<() argument1322 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()1324 Message& Message::operator<<(wchar_t* wide_c_str) { in operator <<() argument1325 return *this << internal::String::ShowWideCString(wide_c_str); in operator <<()2133 std::string String::ShowWideCString(const wchar_t* wide_c_str) { in ShowWideCString() argument2134 if (wide_c_str == nullptr) return "(null)"; in ShowWideCString()2136 return internal::WideStringToUtf8(wide_c_str, -1); in ShowWideCString()