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

  /external/chromium/base/
histogram.h 88 static scoped_refptr<Histogram> counter = LinearHistogram::FactoryGet( \
183 static scoped_refptr<Histogram> counter = LinearHistogram::FactoryGet( \
194 class LinearHistogram;
301 // This method is an interface, used only by LinearHistogram.
460 // LinearHistogram is a more traditional histogram, with evenly spaced
462 class LinearHistogram : public Histogram {
479 LinearHistogram(const std::string& name, Sample minimum,
482 LinearHistogram(const std::string& name, base::TimeDelta minimum,
485 virtual ~LinearHistogram() {}
506 DISALLOW_COPY_AND_ASSIGN(LinearHistogram);
    [all...]
histogram.cc 447 render_histogram = LinearHistogram::FactoryGet(
573 // LinearHistogram: This histogram uses a traditional set of evenly spaced
577 scoped_refptr<Histogram> LinearHistogram::FactoryGet(
590 histogram = new LinearHistogram(name, minimum, maximum, bucket_count);
604 scoped_refptr<Histogram> LinearHistogram::FactoryGet(const std::string& name,
611 LinearHistogram::LinearHistogram(const std::string& name, Sample minimum,
618 LinearHistogram::LinearHistogram(const std::string& name,
628 void LinearHistogram::SetRangeDescriptions
    [all...]

Completed in 177 milliseconds