Searched defs:LinearHistogram (Results 1 - 2 of 2) sorted by path

/external/chromium/base/metrics/
H A Dhistogram.cc277 render_histogram = LinearHistogram::FactoryGet(
766 // LinearHistogram: This histogram uses a traditional set of evenly spaced
770 LinearHistogram::~LinearHistogram() {
773 Histogram* LinearHistogram::FactoryGet(const std::string& name,
787 LinearHistogram* tentative_histogram =
788 new LinearHistogram(name, minimum, maximum, bucket_count);
800 Histogram* LinearHistogram::FactoryTimeGet(const std::string& name,
809 Histogram::ClassType LinearHistogram::histogram_type() const {
813 void LinearHistogram
820 LinearHistogram::LinearHistogram(const std::string& name, function in class:base::LinearHistogram
827 LinearHistogram::LinearHistogram(const std::string& name, function in class:base::LinearHistogram
[all...]
H A Dhistogram.h115 counter = base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
244 counter = base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
264 class LinearHistogram;
399 // This method is an interface, used only by LinearHistogram.
582 // LinearHistogram is a more traditional histogram, with evenly spaced
584 class BASE_API LinearHistogram : public Histogram { class in namespace:base
586 virtual ~LinearHistogram();
609 LinearHistogram(const std::string& name, Sample minimum,
612 LinearHistogram(const std::string& name, TimeDelta minimum,
634 DISALLOW_COPY_AND_ASSIGN(LinearHistogram);
[all...]

Completed in 88 milliseconds