Searched defs:wstr (Results 1 - 14 of 14) sorted by relevance

/external/chromium/base/
H A Dpickle_unittest.cc245 std::wstring wstr; local
246 EXPECT_FALSE(big_len.ReadWString(&iter, &wstr));
H A Dlogging.cc729 std::ostream& operator<<(std::ostream& out, const wchar_t* wstr) { argument
730 return out << WideToUTF8(std::wstring(wstr));
H A Dlogging.h794 std::ostream& operator<<(std::ostream& out, const wchar_t* wstr);
795 inline std::ostream& operator<<(std::ostream& out, const std::wstring& wstr) { argument
796 return out << wstr.c_str();
/external/libvpx/libmkv/
H A DEbmlWriter.c49 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr) argument
51 const size_t strlen = wcslen(wstr);
58 Ebml_Write(glob, wstr, size);
/external/chromium/googleurl/base/
H A Dlogging.cc366 std::ostream& operator<<(std::ostream& out, const wchar_t* wstr) { argument
367 if (!wstr || !wstr[0])
371 int charcount = WideCharToMultiByte(CP_UTF8, 0, wstr, -1,
378 WideCharToMultiByte(CP_UTF8, 0, wstr, -1, buf.get(), charcount, NULL, NULL);
H A Dlogging.h477 std::ostream& operator<<(std::ostream& out, const wchar_t* wstr);
478 inline std::ostream& operator<<(std::ostream& out, const std::wstring& wstr) { argument
479 return out << wstr.c_str();
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.h581 inline String FormatForFailureMessage(const ::std::wstring& wstr) { argument
582 return (Message() << "L\"" << wstr << '"').GetString();
594 inline String FormatForFailureMessage(const ::wstring& wstr) { argument
595 return (Message() << "L\"" << wstr << '"').GetString();
H A Dgtest.cc753 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t len, argument
761 if (wstr[i]) {
762 *msg << internal::ToUtf8String(wstr[i]);
776 Message& Message::operator <<(const ::std::wstring& wstr) { argument
777 internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
785 Message& Message::operator <<(const ::wstring& wstr) { argument
786 internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
/external/gtest/include/gtest/
H A Dgtest.h617 inline String FormatForFailureMessage(const ::std::wstring& wstr) { argument
618 return (Message() << "L\"" << wstr << '"').GetString();
630 inline String FormatForFailureMessage(const ::wstring& wstr) { argument
631 return (Message() << "L\"" << wstr << '"').GetString();
/external/protobuf/gtest/include/gtest/
H A Dgtest.h1138 inline String FormatForFailureMessage(const ::std::wstring& wstr) { argument
1139 return (Message() << "L\"" << wstr << '"').GetString();
1151 inline String FormatForFailureMessage(const ::wstring& wstr) { argument
1152 return (Message() << "L\"" << wstr << '"').GetString();
/external/gtest/test/
H A Dgtest_unittest.cc4219 wchar_t* wstr = NULL; local
4221 (Message() << wstr).GetString().c_str());
4229 wstr = const_cast<wchar_t*>(const_wstr);
4231 (Message() << wstr).GetString().c_str());
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc5079 wchar_t* wstr = NULL; local
5081 (Message() << wstr).GetString().c_str());
5089 wstr = const_cast<wchar_t*>(const_wstr);
5091 (Message() << wstr).GetString().c_str());
/external/gtest/src/
H A Dgtest.cc885 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t len, argument
893 if (wstr[i] != L'\0') {
894 *msg << WideStringToUtf8(wstr + i, static_cast<int>(len - i));
895 while (i != len && wstr[i] != L'\0')
911 Message& Message::operator <<(const ::std::wstring& wstr) { argument
912 internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
920 Message& Message::operator <<(const ::wstring& wstr) { argument
921 internal::StreamWideCharsToMessage(wstr.c_str(), wstr
[all...]
/external/protobuf/gtest/src/
H A Dgtest.cc872 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, argument
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) { argument
899 internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
907 Message& Message::operator <<(const ::wstring& wstr) { argument
908 internal::StreamWideCharsToMessage(wstr.c_str(), wstr
[all...]

Completed in 367 milliseconds