Lines Matching refs:Out
63 std::ostream& Out = GetOutputStream();
77 Out << *B++;
78 if (B != elements.end()) Out << ",";
82 Out << ",\"" << *B++ << "\"";
84 Out << "\n";
110 std::ostream& Out = GetOutputStream();
111 Out << CsvEscape(run.benchmark_name()) << ",";
113 Out << std::string(elements.size() - 3, ',');
114 Out << std::boolalpha << (internal::SkippedWithError == run.skipped) << ",";
115 Out << CsvEscape(run.skip_message) << "\n";
121 Out << run.iterations;
123 Out << ",";
125 Out << run.GetAdjustedRealTime() << ",";
126 Out << run.GetAdjustedCPUTime() << ",";
130 Out << GetBigOString(run.complexity);
132 Out << GetTimeUnitString(run.time_unit);
134 Out << ",";
137 Out << run.counters.at("bytes_per_second");
139 Out << ",";
141 Out << run.counters.at("items_per_second");
143 Out << ",";
145 Out << CsvEscape(run.report_label);
147 Out << ",,"; // for error_occurred and error_message
153 Out << ",";
155 Out << "," << it->second;
158 Out << '\n';