Lines Matching full:indent
66 std::string indent(4, ' ');
69 out << indent << FormatKV("date", walltime_value) << ",\n";
71 out << indent << FormatKV("num_cpus", static_cast<int64_t>(context.num_cpus))
73 out << indent << FormatKV("mhz_per_cpu", RoundDouble(context.mhz_per_cpu))
75 out << indent << FormatKV("cpu_scaling_enabled", context.cpu_scaling_enabled)
83 out << indent << FormatKV("library_build_type", build_type) << "\n";
94 std::string indent(4, ' ');
102 out << indent << "{\n";
104 out << indent << '}';
118 std::string indent(6, ' ');
120 out << indent << FormatKV("name", run.benchmark_name) << ",\n";
122 out << indent << FormatKV("error_occurred", run.error_occurred) << ",\n";
123 out << indent << FormatKV("error_message", run.error_message) << ",\n";
126 out << indent << FormatKV("iterations", run.iterations) << ",\n";
127 out << indent
130 out << indent
133 << indent << FormatKV("time_unit", GetTimeUnitString(run.time_unit));
135 out << indent
138 out << indent
141 out << indent << FormatKV("big_o", GetBigOString(run.complexity)) << ",\n";
142 out << indent << FormatKV("time_unit", GetTimeUnitString(run.time_unit));
144 out << indent
149 << indent
154 << indent
158 out << ",\n" << indent << FormatKV("label", run.report_label);