Home
last modified time | relevance | path

Searched refs:aggregates_only (Results 1 – 3 of 3) sorted by relevance

/third_party/benchmark/src/
Dbenchmark.cc261 auto report_one = [](BenchmarkReporter* reporter, bool aggregates_only, in Report()
265 aggregates_only &= !results.aggregates_only.empty(); in Report()
266 if (!aggregates_only) reporter->ReportRuns(results.non_aggregates); in Report()
267 if (!results.aggregates_only.empty()) in Report()
268 reporter->ReportRuns(results.aggregates_only); in Report()
361 run_results.aggregates_only.insert(run_results.aggregates_only.end(), in RunBenchmarks()
Dbenchmark_runner.h40 std::vector<BenchmarkReporter::Run> aggregates_only; member
Dbenchmark_runner.cc352 run_results.aggregates_only = ComputeStats(run_results.non_aggregates); in GetResults()