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, \
381 class LinearHistogram;
553 // LinearHistogram is a more traditional histogram, with evenly spaced
555 class BASE_EXPORT LinearHistogram : public Histogram {
557 virtual ~LinearHistogram();
577 // Create a LinearHistogram and store a list of number/text values for use in
598 LinearHistogram(const std::string& name,
624 DISALLOW_COPY_AND_ASSIGN(LinearHistogram);
630 class BASE_EXPORT BooleanHistogram : public LinearHistogram {