Searched refs:wide_c_str (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest-message.h167 Message& operator <<(const wchar_t* wide_c_str) { argument
168 return *this << internal::String::ShowWideCString(wide_c_str);
170 Message& operator <<(wchar_t* wide_c_str) { argument
171 return *this << internal::String::ShowWideCString(wide_c_str);
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h167 Message& operator <<(const wchar_t* wide_c_str) { argument
168 return *this << internal::String::ShowWideCString(wide_c_str);
170 Message& operator <<(wchar_t* wide_c_str) { argument
171 return *this << internal::String::ShowWideCString(wide_c_str);
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-message.h167 Message& operator <<(const wchar_t* wide_c_str) { argument
168 return *this << internal::String::ShowWideCString(wide_c_str);
170 Message& operator <<(wchar_t* wide_c_str) { argument
171 return *this << internal::String::ShowWideCString(wide_c_str);
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h162 Message& operator <<(const wchar_t* wide_c_str) { argument
163 return *this << internal::String::ShowWideCString(wide_c_str);
165 Message& operator <<(wchar_t* wide_c_str) { argument
166 return *this << internal::String::ShowWideCString(wide_c_str);
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-string.h108 static std::string ShowWideCString(const wchar_t* wide_c_str);
/external/gtest/include/gtest/internal/
H A Dgtest-string.h108 static std::string ShowWideCString(const wchar_t* wide_c_str);
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-message.h177 Message& operator <<(const wchar_t* wide_c_str);
178 Message& operator <<(wchar_t* wide_c_str);
/external/gtest/include/gtest/
H A Dgtest-message.h177 Message& operator <<(const wchar_t* wide_c_str);
178 Message& operator <<(wchar_t* wide_c_str);
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-string.h140 static String ShowWideCString(const wchar_t* wide_c_str);
144 static String ShowWideCStringQuoted(const wchar_t* wide_c_str);
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h140 static String ShowWideCString(const wchar_t* wide_c_str);
144 static String ShowWideCStringQuoted(const wchar_t* wide_c_str);
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-string.h140 static String ShowWideCString(const wchar_t* wide_c_str);
144 static String ShowWideCStringQuoted(const wchar_t* wide_c_str);
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h138 static String ShowWideCString(const wchar_t* wide_c_str);
142 static String ShowWideCStringQuoted(const wchar_t* wide_c_str);
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc915 Message& Message::operator <<(const wchar_t* wide_c_str) { argument
916 return *this << internal::String::ShowWideCString(wide_c_str);
918 Message& Message::operator <<(wchar_t* wide_c_str) { argument
919 return *this << internal::String::ShowWideCString(wide_c_str);
1809 std::string String::ShowWideCString(const wchar_t * wide_c_str) { argument
1810 if (wide_c_str == NULL) return "(null)";
1812 return internal::WideStringToUtf8(wide_c_str, -1);
/external/gtest/src/
H A Dgtest.cc919 Message& Message::operator <<(const wchar_t* wide_c_str) { argument
920 return *this << internal::String::ShowWideCString(wide_c_str);
922 Message& Message::operator <<(wchar_t* wide_c_str) { argument
923 return *this << internal::String::ShowWideCString(wide_c_str);
1525 std::string String::ShowWideCString(const wchar_t * wide_c_str) { argument
1526 if (wide_c_str == NULL) return "(null)";
1528 return internal::WideStringToUtf8(wide_c_str, -1);
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc1530 String String::ShowWideCString(const wchar_t * wide_c_str) { argument
1531 if (wide_c_str == NULL) return String("(null)");
1533 return String(internal::WideStringToUtf8(wide_c_str, -1).c_str());
1538 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { argument
1539 if (wide_c_str == NULL) return String("(null)");
1542 String::ShowWideCString(wide_c_str).c_str());
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc1530 String String::ShowWideCString(const wchar_t * wide_c_str) { argument
1531 if (wide_c_str == NULL) return String("(null)");
1533 return String(internal::WideStringToUtf8(wide_c_str, -1).c_str());
1538 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { argument
1539 if (wide_c_str == NULL) return String("(null)");
1542 String::ShowWideCString(wide_c_str).c_str());
/external/mesa3d/src/gtest/src/
H A Dgtest.cc1530 String String::ShowWideCString(const wchar_t * wide_c_str) { argument
1531 if (wide_c_str == NULL) return String("(null)");
1533 return String(internal::WideStringToUtf8(wide_c_str, -1).c_str());
1538 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { argument
1539 if (wide_c_str == NULL) return String("(null)");
1542 String::ShowWideCString(wide_c_str).c_str());
/external/protobuf/gtest/src/
H A Dgtest.cc1515 String String::ShowWideCString(const wchar_t * wide_c_str) { argument
1516 if (wide_c_str == NULL) return String("(null)");
1518 return String(internal::WideStringToUtf8(wide_c_str, -1).c_str());
1523 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { argument
1524 if (wide_c_str == NULL) return String("(null)");
1527 String::ShowWideCString(wide_c_str).c_str());
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc2403 Message& Message::operator <<(const wchar_t* wide_c_str) { argument
2404 return *this << internal::String::ShowWideCString(wide_c_str);
2406 Message& Message::operator <<(wchar_t* wide_c_str) { argument
2407 return *this << internal::String::ShowWideCString(wide_c_str);
3009 std::string String::ShowWideCString(const wchar_t * wide_c_str) { argument
3010 if (wide_c_str == NULL) return "(null)";
3012 return internal::WideStringToUtf8(wide_c_str, -1);
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc2403 Message& Message::operator <<(const wchar_t* wide_c_str) { argument
2404 return *this << internal::String::ShowWideCString(wide_c_str);
2406 Message& Message::operator <<(wchar_t* wide_c_str) { argument
2407 return *this << internal::String::ShowWideCString(wide_c_str);
3009 std::string String::ShowWideCString(const wchar_t * wide_c_str) { argument
3010 if (wide_c_str == NULL) return "(null)";
3012 return internal::WideStringToUtf8(wide_c_str, -1);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h3249 Message& operator <<(const wchar_t* wide_c_str);
3250 Message& operator <<(wchar_t* wide_c_str);
3429 static std::string ShowWideCString(const wchar_t* wide_c_str);
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h3249 Message& operator <<(const wchar_t* wide_c_str);
3250 Message& operator <<(wchar_t* wide_c_str);
3429 static std::string ShowWideCString(const wchar_t* wide_c_str);

Completed in 447 milliseconds