Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-printers.h486 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 Dgtest-printers.cc276 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 Dgtest.cc1459 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 Dsanitizer_stacktrace_libcdep.cpp94 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 Dsanitizer_stacktrace.h62 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 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/contrib/googletest/googletest/test/
H A Dgoogletest-list-tests-unittest_.cc80 void PrintTo(const MyType& x, std::ostream* os) { *os << x.value(); } in PrintTo() function
H A Dgoogletest-printers-test.cc85 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 Dbacktrace_sanitizer_common.cpp76 StackTrace.PrintTo(&buffer); in PrintBacktrace()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan.cpp837 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 Dgmock-spec-builders_test.cc75 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 Dadvanced.md360 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