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

  /external/chromium/base/metrics/
histogram.cc 277 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::SetRangeDescriptions
    [all...]
histogram.h 115 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 {
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 1223 milliseconds