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

/external/clang/test/SemaCXX/
H A Dtype-convert-construct.cpp15 wchar_t *wstr; local
16 wstr = L"a wide string"; // expected-warning{{conversion from string literal to 'wchar_t *' is deprecated}}
/external/chromium/chrome/common/
H A Dchild_process_logging_linux.cc48 std::wstring wstr = ASCIIToWide(str); local
49 GoogleUpdateSettings::SetMetricsId(wstr);
H A Dsqlite_utils.cc507 std::wstring wstr; local
508 column_wstring(index, &wstr);
509 return wstr;
/external/chromium/base/
H A Dpickle_unittest.cc295 std::wstring wstr; local
296 EXPECT_FALSE(big_len.ReadWString(&iter, &wstr));
H A Dlogging.cc825 std::ostream& operator<<(std::ostream& out, const wchar_t* wstr) { argument
826 return out << WideToUTF8(std::wstring(wstr));
H A Dlogging.h893 BASE_API std::ostream& operator<<(std::ostream& out, const wchar_t* wstr);
894 inline std::ostream& operator<<(std::ostream& out, const std::wstring& wstr) { argument
895 return out << wstr.c_str();
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32.h77 inline std::string ToUtf8(const std::wstring& wstr) { argument
78 return ToUtf8(wstr.data(), wstr.length());
/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/chrome/browser/ui/webui/options/
H A Doptions_ui.cc278 std::wstring wstr = CommandLine::ForCurrentProcess()->command_line_string(); local
279 command_line_string = WideToASCII(wstr);
/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/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/chromium/testing/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/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/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/chromium/testing/gtest/src/
H A Dgtest.cc907 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, argument
915 if (wstr[i] != L'\0') {
916 *msg << WideStringToUtf8(wstr + i, static_cast<int>(length - i));
917 while (i != length && wstr[i] != L'\0')
933 Message& Message::operator <<(const ::std::wstring& wstr) { argument
934 internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
942 Message& Message::operator <<(const ::wstring& wstr) { argument
943 internal::StreamWideCharsToMessage(wstr.c_str(), wstr
[all...]
/external/gtest/src/
H A Dgtest.cc907 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, argument
915 if (wstr[i] != L'\0') {
916 *msg << WideStringToUtf8(wstr + i, static_cast<int>(length - i));
917 while (i != length && wstr[i] != L'\0')
933 Message& Message::operator <<(const ::std::wstring& wstr) { argument
934 internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
942 Message& Message::operator <<(const ::wstring& wstr) { argument
943 internal::StreamWideCharsToMessage(wstr.c_str(), wstr
[all...]
/external/llvm/utils/unittest/googletest/
H A Dgtest.cc907 static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, argument
915 if (wstr[i] != L'\0') {
916 *msg << WideStringToUtf8(wstr + i, static_cast<int>(length - i));
917 while (i != length && wstr[i] != L'\0')
933 Message& Message::operator <<(const ::std::wstring& wstr) { argument
934 internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this);
942 Message& Message::operator <<(const ::wstring& wstr) { argument
943 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...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 729 milliseconds