/freebsd/contrib/googletest/googletest/include/gtest/ |
H A D | gtest-printers.h | 486 void PrintTo(const T& value, ::std::ostream* os) { 495 GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); 496 GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); 497 inline void PrintTo(char c, ::std::ostream* os) { 501 PrintTo(static_cast<unsigned char>(c), os); 505 inline void PrintTo(bool x, ::std::ostream* os) { 516 GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); 518 GTEST_API_ void PrintTo(char32_t c, ::std::ostream* os); 519 inline void PrintTo(char16_t c, ::std::ostream* os) { 520 PrintTo(ImplicitCast_<char32_t>(c), os); [all …]
|
/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest-printers.cc | 276 void PrintTo(unsigned char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); } in PrintTo() function 277 void PrintTo(signed char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); } in PrintTo() function 281 void PrintTo(wchar_t wc, ostream* os) { PrintCharAndCodeTo(wc, os); } in PrintTo() function 284 void PrintTo(char32_t c, ::std::ostream* os) { in PrintTo() function 291 void PrintTo(__uint128_t v, ::std::ostream* os) { in PrintTo() function 324 void PrintTo(__int128_t v, ::std::ostream* os) { in PrintTo() function 330 PrintTo(uv, os); in PrintTo() 439 void PrintTo(const char* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo() function 442 void PrintTo(const char8_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo() function 445 void PrintTo(const char16_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo() function [all …]
|
H A D | gtest.cc | 1459 void PrintTo(std::ostream* os) { in PrintTo() function in testing::internal::edit_distance::__anon214b3c2b0911::Hunk 1567 hunk.PrintTo(&ss); in CreateUnifiedDiff()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_stacktrace_libcdep.cpp | 94 void StackTrace::PrintTo(InternalScopedString *output) const { in PrintTo() function in __sanitizer::StackTrace 121 uptr StackTrace::PrintTo(char *out_buf, uptr out_buf_size) const { in PrintTo() function in __sanitizer::StackTrace 125 PrintTo(&output); in PrintTo() 133 PrintTo(&output); in Print()
|
H A D | sanitizer_stacktrace.h | 62 void PrintTo(InternalScopedString *output) const; 68 uptr PrintTo(char *out_buf, uptr out_buf_size) const;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Support/ |
H A D | SupportHelpers.h | 38 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) { in PrintTo() function 53 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) { in PrintTo() function 57 PrintTo(static_cast<const ErrorHolder &>(Item), Out); in PrintTo()
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-list-tests-unittest_.cc | 80 void PrintTo(const MyType& x, std::ostream* os) { *os << x.value(); } in PrintTo() function
|
H A D | googletest-printers-test.cc | 85 void PrintTo(EnumWithPrintTo e, std::ostream* os) { in PrintTo() function 163 void PrintTo(const PrintableViaPrintTo& x, ::std::ostream* os) { in PrintTo() function 188 void PrintTo(const PrintableViaPrintToTemplate<T>& x, ::std::ostream* os) { in PrintTo() function
|
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/ |
H A D | backtrace_sanitizer_common.cpp | 76 StackTrace.PrintTo(&buffer); in PrintBacktrace()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan.cpp | 837 stack.PrintTo(out); in PrintOriginTraceFramesToStr() 1008 return stack.PrintTo(out_buf, out_buf_size); in dfsan_sprint_stack_trace()
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-spec-builders_test.cc | 75 void PrintTo(const Incomplete& x, ::std::ostream* os); 88 void PrintTo(const Incomplete& /* x */, ::std::ostream* os) { in PrintTo() function 2119 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) { in PrintTo() function
|
/freebsd/contrib/googletest/docs/ |
H A D | advanced.md | 360 instead define a `PrintTo()` function like this: 369 friend void PrintTo(const Point& point, std::ostream* os) { 377 // If you can't declare the function in the class it's important that PrintTo() 380 void PrintTo(const Point& point, std::ostream* os) { 387 If you have defined both `AbslStringify()` and `PrintTo()`, the latter will be
|