Lines Matching defs:name
160 State::State(std::string name, IterationCount max_iters,
172 name_(std::move(name)),
182 // Add counters with correct flag now. If added with `counters[name]` in
241 const std::string& name = name_and_measurement.first;
244 assert(counters.find(name) != counters.end());
245 counters[name].value += measurement;
352 // Determine the width of the name field using a minimum width of 10.
358 std::max<size_t>(name_field_width, benchmark.name().str().size());
477 std::string const& name, ConsoleReporter::OutputOptions output_opts) {
479 if (name == "console") {
482 if (name == "json") {
485 if (name == "csv") {
488 std::cerr << "Unexpected format: '" << name << "'\n";
585 Err << "invalid file name: '" << fname << "'" << std::endl;
609 Out << benchmark.name().str() << "\n";