Home | History | Annotate | Download | only in metrics

Lines Matching defs:LinearHistogram

12 // For Histogram(exponential histogram), LinearHistogram and CustomHistogram,
25 // For Histogram and LinearHistogram, the maximum for a declared range should
196 base::LinearHistogram::FactoryGet(name, 1, boundary, boundary + 1, \
214 base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
314 class LinearHistogram;
482 // LinearHistogram is a more traditional histogram, with evenly spaced
484 class BASE_EXPORT LinearHistogram : public Histogram {
486 virtual ~LinearHistogram();
506 // Create a LinearHistogram and store a list of number/text values for use in
527 LinearHistogram(const std::string& name,
553 DISALLOW_COPY_AND_ASSIGN(LinearHistogram);
559 class BASE_EXPORT BooleanHistogram : public LinearHistogram {