Lines Matching refs:os

166       ::std::ostream* os) const
183 ::std::ostream* os) const = 0;
705 void DescribeLocationTo(::std::ostream* os) const {
706 *os << FormatFileLocation(file(), line()) << " ";
711 void DescribeCallCountTo(::std::ostream* os) const
716 virtual void MaybeDescribeExtraMatcherTo(::std::ostream* os) = 0;
1062 virtual void MaybeDescribeExtraMatcherTo(::std::ostream* os) {
1064 *os << " Expected args: ";
1065 extra_matcher_.DescribeTo(os);
1066 *os << "\n";
1108 ::std::ostream* os) const
1113 *os << " Expected: the expectation is active\n"
1117 ExplainMatchFailureTupleTo(matchers_, args, os);
1121 *os << " Expected args: ";
1122 extra_matcher_.DescribeTo(os);
1123 *os << "\n Actual: don't match";
1125 internal::PrintIfNotEmpty(listener.str(), os);
1126 *os << "\n";
1129 *os << " Expected: all pre-requisites are satisfied\n"
1137 it->expectation_base()->DescribeLocationTo(os);
1138 *os << "pre-requisite #" << i++ << "\n";
1140 *os << " (end of pre-requisites)\n";
1146 *os << "The call matches the expectation.\n";
1366 // Prints the held value as an action's result to os.
1367 virtual void PrintAsActionResult(::std::ostream* os) const = 0;
1379 // Prints the held value as an action's result to os.
1380 virtual void PrintAsActionResult(::std::ostream* os) const {
1381 *os << "\n Returns: ";
1383 UniversalPrinter<T>::Print(result_.Peek(), os);
1424 virtual void PrintAsActionResult(::std::ostream* /* os */) const {}
1635 ::std::ostream* os) const {
1639 *os << (internal::type_equals<Result, void>::value ?
1643 *os << "taking default action specified at:\n"
1653 ::std::ostream* os) const
1657 *os << "Uninteresting mock function call - ";
1658 DescribeDefaultActionTo(args, os);
1659 *os << " Function call: " << Name();
1660 UniversalPrint(args, os);
1706 ::std::ostream* os) const {
1709 UniversalPrint(args, os);
1733 ::std::ostream* os,
1737 *os << "\nUnexpected mock function call - ";
1738 DescribeDefaultActionTo(args, os);