Lines Matching refs:footer
469 void Isolate::PrintResults(size_t total, const ResultsType& results, std::string* footer) { in PrintResults() argument
493 *footer += ' '; in PrintResults()
495 *footer += in PrintResults()
564 std::string footer; in PrintFooter() local
568 PrintResults(total_skipped_tests_, SkippedResults, &footer); in PrintFooter()
573 PrintResults(total_slow_tests_, SlowResults, &footer); in PrintFooter()
578 PrintResults(total_xpass_tests_, XpassFailResults, &footer); in PrintFooter()
583 PrintResults(total_timeout_tests_, TimeoutResults, &footer); in PrintFooter()
588 PrintResults(total_fail_tests_, FailResults, &footer); in PrintFooter()
591 if (!footer.empty()) { in PrintFooter()
592 printf("\n%s", footer.c_str()); in PrintFooter()
596 if (footer.empty()) { in PrintFooter()