Searched refs:wide_c_str (Results 1 – 3 of 3) sorted by relevance
162 Message& operator <<(const wchar_t* wide_c_str) {163 return *this << internal::String::ShowWideCString(wide_c_str);165 Message& operator <<(wchar_t* wide_c_str) {166 return *this << internal::String::ShowWideCString(wide_c_str);
151 static String ShowWideCString(const wchar_t* wide_c_str);155 static String ShowWideCStringQuoted(const wchar_t* wide_c_str);
1537 String String::ShowWideCString(const wchar_t * wide_c_str) { in ShowWideCString() argument1538 if (wide_c_str == NULL) return String("(null)"); in ShowWideCString()1540 return String(internal::WideStringToUtf8(wide_c_str, -1).c_str()); in ShowWideCString()1545 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { in ShowWideCStringQuoted() argument1546 if (wide_c_str == NULL) return String("(null)"); in ShowWideCStringQuoted()1549 String::ShowWideCString(wide_c_str).c_str()); in ShowWideCStringQuoted()