HomeSort by relevance Sort by last modified time
    Searched defs:LinearHistogram (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/metrics/
histogram.h 12 // For Histogram(exponential histogram), LinearHistogram and CustomHistogram,
25 // For Histogram and LinearHistogram, the maximum for a declared range should
94 class LinearHistogram;
326 // LinearHistogram is a more traditional histogram, with evenly spaced
328 class BASE_EXPORT LinearHistogram : public Histogram {
330 ~LinearHistogram() override;
376 // Create a LinearHistogram and store a list of number/text values for use in
399 LinearHistogram(const std::string& name,
404 LinearHistogram(const std::string& name,
435 DISALLOW_COPY_AND_ASSIGN(LinearHistogram);
    [all...]
histogram.cc 730 // LinearHistogram: This histogram uses a traditional set of evenly spaced
734 class LinearHistogram::Factory : public Histogram::Factory {
751 LinearHistogram::InitializeBucketRanges(minimum_, maximum_, ranges);
758 new LinearHistogram(name_, minimum_, maximum_, ranges));
763 LinearHistogram* histogram = static_cast<LinearHistogram*>(base_histogram);
779 LinearHistogram::~LinearHistogram() {}
781 HistogramBase* LinearHistogram::FactoryGet(const std::string& name,
790 HistogramBase* LinearHistogram::FactoryTimeGet(const std::string& name
    [all...]

Completed in 74 milliseconds