| /freebsd-14.2/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-printers.h | 479 PrintTo(static_cast<unsigned char>(c), os); 498 PrintTo(ImplicitCast_<char32_t>(c), os); 502 PrintTo(ImplicitCast_<char32_t>(c), os); 596 PrintTo(ImplicitCast_<const char*>(s), os); 602 PrintTo(ImplicitCast_<const void*>(s), os); 605 PrintTo(ImplicitCast_<const void*>(s), os); 608 PrintTo(ImplicitCast_<const void*>(s), os); 611 PrintTo(ImplicitCast_<const void*>(s), os); 617 PrintTo(ImplicitCast_<const char8_t*>(s), os); 695 PrintTo(::std::string(sp), os); [all …]
|
| /freebsd-14.2/contrib/googletest/googletest/src/ |
| H A D | gtest-printers.cc | 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 447 void PrintTo(const char32_t* s, ostream* os) { PrintCStringTo(s, os); } in PrintTo() function [all …]
|
| H A D | gtest.cc | 1433 void PrintTo(std::ostream* os) { in PrintTo() function in testing::internal::edit_distance::__anon7f7670e10811::Hunk 1541 hunk.PrintTo(&ss); in CreateUnifiedDiff()
|
| /freebsd-14.2/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-14.2/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-14.2/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 | 80 void PrintTo(EnumWithPrintTo e, std::ostream* os) { in PrintTo() function 158 void PrintTo(const PrintableViaPrintTo& x, ::std::ostream* os) { in PrintTo() function 183 void PrintTo(const PrintableViaPrintToTemplate<T>& x, ::std::ostream* os) { in PrintTo() function
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/ |
| H A D | backtrace_sanitizer_common.cpp | 76 StackTrace.PrintTo(&buffer); in PrintBacktrace()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan.cpp | 834 stack.PrintTo(out); in PrintOriginTraceFramesToStr() 1005 return stack.PrintTo(out_buf, out_buf_size); in dfsan_sprint_stack_trace()
|
| /freebsd-14.2/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-14.2/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
|