Home
last modified time | relevance | path

Searched refs:output_opts (Results 1 – 2 of 2) sorted by relevance

/external/google-benchmark/src/
Dbenchmark.cc530 std::string const& name, ConsoleReporter::OutputOptions output_opts) { in CreateReporter() argument
533 return PtrType(new ConsoleReporter(output_opts)); in CreateReporter()
551 int output_opts = ConsoleReporter::OO_Defaults; in GetOutputOptions() local
554 output_opts |= ConsoleReporter::OO_Color; in GetOutputOptions()
556 output_opts &= ~ConsoleReporter::OO_Color; in GetOutputOptions()
559 output_opts &= ~ConsoleReporter::OO_Color; in GetOutputOptions()
562 output_opts |= ConsoleReporter::OO_Tabular; in GetOutputOptions()
564 output_opts &= ~ConsoleReporter::OO_Tabular; in GetOutputOptions()
566 return static_cast< ConsoleReporter::OutputOptions >(output_opts); in GetOutputOptions()
/external/libcxx/utils/google-benchmark/src/
Dbenchmark.cc544 auto output_opts = ConsoleReporter::OO_None; in RunSpecifiedBenchmarks() local
546 output_opts = IsColorTerminal() ? ConsoleReporter::OO_Color in RunSpecifiedBenchmarks()
549 output_opts = IsTruthyFlagValue(FLAGS_benchmark_color) in RunSpecifiedBenchmarks()
553 internal::CreateReporter(FLAGS_benchmark_format, output_opts); in RunSpecifiedBenchmarks()