HomeSort by relevance Sort by last modified time
    Searched full:histogram_type (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/tools/perf/metrics/
histogram_util.py 62 def GetHistogram(histogram_type, histogram_name, tab):
64 assert histogram_type in [BROWSER_HISTOGRAM, RENDERER_HISTOGRAM]
66 if histogram_type == BROWSER_HISTOGRAM:
76 def GetHistogramCount(histogram_type, histogram_name, tab):
78 histogram_json = GetHistogram(histogram_type, histogram_name, tab)
85 def GetHistogramSum(histogram_type, histogram_name, tab):
87 histogram_json = GetHistogram(histogram_type, histogram_name, tab)
startup_metric.py 31 histogram_type = histogram_util.BROWSER_HISTOGRAM
33 histogram_type,
37 histogram_type,
  /external/chromium_org/tools/perf/measurements/
tab_switching.py 50 histogram_type = histogram_util.BROWSER_HISTOGRAM
52 histogram_type, histogram_name, tab)
60 histogram_type, histogram_name, tab)
66 histogram_type, histogram_name, tab)
69 histogram_type, histogram_name, tab)
memory_pressure.py 33 histogram_type = histogram_util.BROWSER_HISTOGRAM
35 histogram_type, "Tabs.Discard.DiscardCount", tab)
37 histogram_type, "Tabs.SadTab.KillCreated", tab)
  /external/chromium/base/metrics/
histogram.cc 102 DCHECK_EQ(HISTOGRAM, histogram->histogram_type());
214 DCHECK_NE(NOT_VALID_IN_RENDERER, histogram.histogram_type());
222 pickle.WriteInt(histogram.histogram_type());
242 int histogram_type; local
252 !pickle.ReadInt(&iter, &histogram_type) ||
269 DCHECK_NE(NOT_VALID_IN_RENDERER, histogram_type);
273 if (histogram_type == HISTOGRAM) {
276 } else if (histogram_type == LINEAR_HISTOGRAM) {
279 } else if (histogram_type == BOOLEAN_HISTOGRAM) {
282 LOG(ERROR) << "Error Deserializing Histogram Unknown histogram_type:
352 Histogram::ClassType Histogram::histogram_type() const { function in class:base::Histogram
809 Histogram::ClassType LinearHistogram::histogram_type() const { function in class:base::LinearHistogram
890 Histogram::ClassType BooleanHistogram::histogram_type() const { function in class:base::BooleanHistogram
939 Histogram::ClassType CustomHistogram::histogram_type() const { function in class:base::CustomHistogram
    [all...]
histogram.h 439 virtual ClassType histogram_type() const;
602 virtual ClassType histogram_type() const;
644 virtual ClassType histogram_type() const;
665 virtual ClassType histogram_type() const;
  /external/chromium_org/chrome/browser/net/
load_time_stats.cc 309 for (int histogram_type = HISTOGRAM_FINAL_AGGREGATE;
310 histogram_type < HISTOGRAM_MAX;
311 histogram_type++) {
317 string(kHistogramTypeNames[histogram_type]) + string("_") +
319 histograms_[status][histogram_type].push_back(
324 DCHECK_EQ(histograms_[status][histogram_type].size(),
  /external/chromium/net/disk_cache/
stats_histogram.cc 43 DCHECK(HISTOGRAM == histogram->histogram_type());
  /external/chromium/chrome/browser/extensions/
extension_metrics_module.cc 116 Histogram::ClassType histogram_type(type == "histogram-linear" ?
118 return RecordValue(name, histogram_type, min, max, buckets, sample);
extension_metrics_apitest.cc 129 EXPECT_EQ(r.type, histogram->histogram_type());
  /external/chromium_org/chrome/browser/extensions/api/metrics_private/
metrics_private_api.cc 154 base::HistogramType histogram_type(type == "histogram-linear" ?
156 return RecordValue(params->metric.metric_name, histogram_type,
  /external/chromium_org/chrome/browser/predictors/
resource_prefetch_predictor.cc 1071 std::string histogram_type = key_type == PREFETCH_KEY_TYPE_HOST ? "Host." : local
    [all...]

Completed in 106 milliseconds