Home
last modified time | relevance | path

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

/external/webrtc/test/testsupport/
Dperf_test.cc87 std::ostringstream value_stream; in Print() local
88 value_stream.precision(8); in Print()
89 value_stream << R"({"graph_name":")" << counter.graph_name << R"(",)"; in Print()
90 value_stream << R"("trace_name":")" << counter.trace_name << R"(",)"; in Print()
91 value_stream << R"("units":")" << counter.units << R"(",)"; in Print()
93 value_stream << R"("mean":)" << counter.counter.GetAverage() << ','; in Print()
94 value_stream << R"("std":)" << counter.counter.GetStandardDeviation() in Print()
97 value_stream << R"("samples":[)"; in Print()
100 value_stream << sep << R"({"time":)" << sample.time.us() << ',' in Print()
104 value_stream << "]}"; in Print()
[all …]