Lines Matching defs:Run
1001 virtual void Run(State& st) { lambda_(st); } in Run() function
1053 virtual void Run(State& st) { in Run() function
1321 struct Run { struct
1322 enum RunType { RT_Iteration, RT_Aggregate }; argument
1324 Run() in Run() argument
1344 RunType run_type; // is this a measurement, or an aggregate? argument
1345 std::string aggregate_name;
1346 std::string report_label; // Empty if not set by benchmark.
1347 bool error_occurred;
1348 std::string error_message;
1350 int64_t iterations;
1351 TimeUnit time_unit;
1352 double real_accumulated_time;
1353 double cpu_accumulated_time;
1368 double max_heapbytes_used;
1371 BigO complexity;
1372 BigOFunc* complexity_lambda;
1373 int64_t complexity_n;
1376 const std::vector<Statistics>* statistics;
1379 bool report_big_o;
1380 bool report_rms;
1382 UserCounters counters;
1385 bool has_memory_result;
1409 virtual void ReportRuns(const std::vector<Run>& report) = 0; argument