| /freebsd-13.1/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-printers.h | 537 inline void PrintTo(char c, ::std::ostream* os) { in PrintTo() function 541 PrintTo(static_cast<unsigned char>(c), os); in PrintTo() 561 PrintTo(ImplicitCast_<const char*>(s), os); in PrintTo() 567 PrintTo(ImplicitCast_<const void*>(s), os); in PrintTo() 570 PrintTo(ImplicitCast_<const void*>(s), os); in PrintTo() 573 PrintTo(ImplicitCast_<const void*>(s), os); in PrintTo() 576 PrintTo(ImplicitCast_<const void*>(s), os); in PrintTo() 588 PrintTo(ImplicitCast_<const wchar_t*>(s), os); in PrintTo() 637 PrintTo(::std::string(sp), os); in PrintTo() 721 void PrintTo( in PrintTo() function [all …]
|
| /freebsd-13.1/contrib/googletest/googletest/src/ |
| H A D | gtest-printers.cc | 244 void PrintTo(unsigned char c, ::std::ostream* os) { in PrintTo() function 247 void PrintTo(signed char c, ::std::ostream* os) { in PrintTo() function 253 void PrintTo(wchar_t wc, ostream* os) { in PrintTo() function 329 void PrintTo(const char* s, ostream* os) { in PrintTo() function 346 void PrintTo(const wchar_t* s, ostream* os) { in PrintTo() function
|
| H A D | gtest.cc | 1202 void PrintTo(std::ostream* os) { in PrintTo() function in testing::internal::edit_distance::__anon003751df0211::Hunk 1309 hunk.PrintTo(&ss); in CreateUnifiedDiff()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stacktrace_libcdep.cpp | 93 void StackTrace::PrintTo(InternalScopedString *output) const { in PrintTo() function in __sanitizer::StackTrace 120 uptr StackTrace::PrintTo(char *out_buf, uptr out_buf_size) const { in PrintTo() function in __sanitizer::StackTrace 124 PrintTo(&output); in PrintTo() 132 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-13.1/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-13.1/contrib/googletest/googletest/test/ |
| H A D | googletest-list-tests-unittest_.cc | 89 void PrintTo(const MyType& x, std::ostream* os) { in PrintTo() function
|
| H A D | googletest-printers-test.cc | 91 void PrintTo(EnumWithPrintTo e, std::ostream* os) { in PrintTo() function 142 void PrintTo(const PrintableViaPrintTo& x, ::std::ostream* os) { in PrintTo() function 167 void PrintTo(const PrintableViaPrintToTemplate<T>& x, ::std::ostream* os) { in PrintTo() function
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan.cpp | 680 stack.PrintTo(out); in PrintOriginTraceToStr() 788 return stack.PrintTo(out_buf, out_buf_size); in dfsan_sprint_stack_trace()
|
| /freebsd-13.1/contrib/googletest/googlemock/test/ |
| H A D | gmock-spec-builders_test.cc | 121 void PrintTo(const Incomplete& x, ::std::ostream* os); 135 void PrintTo(const Incomplete& /* x */, ::std::ostream* os) { in PrintTo() function 2248 void PrintTo(PrintMeNot /* dummy */, ::std::ostream* /* os */) { in PrintTo() function
|
| /freebsd-13.1/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-actions.h | 1016 void PrintTo(const ReferenceWrapper<T>& ref, ::std::ostream* os) {
|
| /freebsd-13.1/contrib/googletest/googletest/docs/ |
| H A D | advanced.md | 593 define a `PrintTo()` function like this: 604 friend void PrintTo(const Bar& bar, std::ostream* os) { 609 // If you can't declare the function in the class it's important that PrintTo() 612 void PrintTo(const Bar& bar, std::ostream* os) { 619 If you have defined both `<<` and `PrintTo()`, the latter will be used when
|