Home | History | Annotate | Download | only in src

Lines Matching refs:wstr

872 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length,
880 if (wstr[i] != L'\0') {
881 *msg << WideStringToUtf8(wstr + i, static_cast<int>(length - i));
882 while (i != length && wstr[i] != L'\0')
898 Message& Message::operator <<(const ::std::wstring& wstr) {
899 internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
907 Message& Message::operator <<(const ::wstring& wstr) {
908 wstr.c_str(), wstr.length(), this);