Home | History | Annotate | Download | only in gtest

Lines Matching defs:UniversalPrinter

37 //   void ::testing::internal::UniversalPrinter<T>::Print(value, ostream_ptr);
178 // what UniversalPrinter<T>::Print() does when it knows nothing about
212 // magic needed for implementing UniversalPrinter won't work.
253 // UniversalPrinter<T>::Print(value, ostream_ptr) prints the given
257 // We define UniversalPrinter as a class template (as opposed to a
261 class UniversalPrinter;
343 // UniversalPrinter<T>::Print() does when PrintTo() is not specialized
380 // UniversalPrinter<T>::Print() how to print standard types (built-in
570 UniversalPrinter<T1>::Print(value.first, os);
572 UniversalPrinter<T2>::Print(value.second, os);
579 class UniversalPrinter {
639 class UniversalPrinter<T[N]> {
650 class UniversalPrinter<T&> {
697 UniversalPrinter<T>::Print(value, os);
718 UniversalPrinter<typename ::std::tr1::tuple_element<N - 1, Tuple>::type>
751 UniversalPrinter<typename ::std::tr1::tuple_element<0, Tuple>::type>::