Home
last modified time | relevance | path

Searched refs:PrintTo (Results 1 – 12 of 12) sorted by relevance

/freebsd-13.1/contrib/googletest/googletest/include/gtest/
H A Dgtest-printers.h537 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 Dgtest-printers.cc244 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 Dgtest.cc1202 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 Dsanitizer_stacktrace_libcdep.cpp93 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 Dsanitizer_stacktrace.h62 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 DSupportHelpers.h38 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 Dgoogletest-list-tests-unittest_.cc89 void PrintTo(const MyType& x, std::ostream* os) { in PrintTo() function
H A Dgoogletest-printers-test.cc91 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 Ddfsan.cpp680 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 Dgmock-spec-builders_test.cc121 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 Dgmock-actions.h1016 void PrintTo(const ReferenceWrapper<T>& ref, ::std::ostream* os) {
/freebsd-13.1/contrib/googletest/googletest/docs/
H A Dadvanced.md593 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