Searched defs:wide_c_str (Results 1 - 10 of 10) sorted by relevance

/external/chromium/testing/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/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/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/sdch/open-vcdiff/src/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);
H A Dgtest.cc1317 String String::ShowWideCString(const wchar_t * wide_c_str) { argument
1318 if (wide_c_str == NULL) return String("(null)");
1321 while (*wide_c_str) {
1322 ss << internal::ToUtf8String(*wide_c_str++);
1330 String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { argument
1331 if (wide_c_str == NULL) return String("(null)");
1334 String::ShowWideCString(wide_c_str).c_str());
/external/chromium/testing/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/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/
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());

Completed in 367 milliseconds