Home
last modified time | relevance | path

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

/external/chromium_org/tools/telemetry/telemetry/value/
Dhistogram_util.py24 def SubtractHistogram(histogram_json, start_histogram_json): argument
33 return histogram_json
35 histogram = json.loads(histogram_json)
74 for histogram_json in histogram_jsons:
75 h = json.loads(histogram_json)
95 histogram_json = tab.EvaluateJavaScript(
98 if histogram_json:
99 return histogram_json
105 histogram_json = GetHistogram(histogram_type, histogram_name, tab)
106 histogram = json.loads(histogram_json)
[all …]
/external/chromium_org/content/browser/
Dhistogram_message_filter.cc43 std::string* histogram_json) { in OnGetBrowserHistogram() argument
58 *histogram_json = "{}"; in OnGetBrowserHistogram()
60 histogram->WriteJSON(histogram_json); in OnGetBrowserHistogram()
Dhistogram_message_filter.h31 std::string* histogram_json);
/external/chromium_org/content/renderer/
Dstats_collection_controller.cc133 std::string histogram_json; in GetBrowserHistogram() local
135 histogram_name, &histogram_json)); in GetBrowserHistogram()
136 return histogram_json; in GetBrowserHistogram()
/external/chromium_org/build/util/lib/common/
Dperf_tests_results_helper.py39 def GeomMeanAndStdDevFromHistogram(histogram_json): argument
40 histogram = json.loads(histogram_json)