Searched refs:PrintTo (Results 1 – 4 of 4) sorted by relevance
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
D | gtest-printers.h | 353 void PrintTo(const T& value, ::std::ostream* os) { in PrintTo() function 384 GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); 385 GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); 386 inline void PrintTo(char c, ::std::ostream* os) { in PrintTo() function 390 PrintTo(static_cast<unsigned char>(c), os); in PrintTo() 394 inline void PrintTo(bool x, ::std::ostream* os) { in PrintTo() function 405 GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); 408 GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); 409 inline void PrintTo(char* s, ::std::ostream* os) { in PrintTo() function 410 PrintTo(ImplicitCast_<const char*>(s), os); in PrintTo() [all …]
|
/ndk/sources/third_party/googletest/googletest/src/ |
D | gtest-printers.cc | 237 void PrintTo(unsigned char c, ::std::ostream* os) { in PrintTo() function 240 void PrintTo(signed char c, ::std::ostream* os) { in PrintTo() function 246 void PrintTo(wchar_t wc, ostream* os) { in PrintTo() function 310 void PrintTo(const char* s, ostream* os) { in PrintTo() function 327 void PrintTo(const wchar_t* s, ostream* os) { in PrintTo() function
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest_list_tests_unittest_.cc | 90 void PrintTo(const MyType& x, std::ostream* os) { in PrintTo() function
|
D | gtest-printers_test.cc | 89 void PrintTo(EnumWithPrintTo e, std::ostream* os) { in PrintTo() function 139 void PrintTo(const PrintableViaPrintTo& x, ::std::ostream* os) { in PrintTo() function 164 void PrintTo(const PrintableViaPrintToTemplate<T>& x, ::std::ostream* os) { in PrintTo() function
|