Home
last modified time | relevance | path

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

/third_party/skia/tools/trace/
DChromeTracingTracer.cpp162 case TRACE_VALUE_TYPE_DOUBLE: writer->appendDouble(value.as_double); break; in trace_value_to_json()
223 writer->appendDouble("ts", static_cast<double>(relativeTimestamp) * 1E-3); in trace_event_to_json()
226 writer->appendDouble("dur", dur); in trace_event_to_json()
/third_party/skia/src/utils/
DSkJSONWriter.h203 void appendDouble(double value) { this->beginValue(); this->appendf("%g", value); } in appendDouble() function
230 DEFINE_NAMED_APPEND(appendDouble, double) in DEFINE_NAMED_APPEND()