Lines Matching defs:reporter
107 // the display reporter, but *NOT* file reporter, which will still contain
315 // Flushes streams after invoking reporter methods that write to them. This
317 void FlushStreams(BenchmarkReporter* reporter) {
318 if (!reporter) return;
319 std::flush(reporter->GetOutputStream());
320 std::flush(reporter->GetErrorStream());
326 auto report_one = [](BenchmarkReporter* reporter, bool aggregates_only,
328 assert(reporter);
331 if (!aggregates_only) reporter->ReportRuns(results.non_aggregates);
333 reporter->ReportRuns(results.aggregates_only);
577 Err << "A custom file reporter was provided but "