Searched defs:CustomHistogram (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/base/metrics/
H A Dhistogram.h12 // For Histogram(exponential histogram), LinearHistogram and CustomHistogram,
28 // so the smallest legal bucket_count is 3. However CustomHistogram can have
220 // You can use the helper function CustomHistogram::ArrayToCustomRanges to
224 base::CustomHistogram::FactoryGet(name, custom_ranges, \
303 base::CustomHistogram::FactoryGet(name, custom_ranges, \
312 class CustomHistogram;
577 // CustomHistogram is a histogram for a set of custom integers.
578 class BASE_EXPORT CustomHistogram : public Histogram { class in namespace:base
600 CustomHistogram(const std::string& name,
617 DISALLOW_COPY_AND_ASSIGN(CustomHistogram);
[all...]
H A Dhistogram.cc710 // CustomHistogram:
713 HistogramBase* CustomHistogram::FactoryGet(const string& name,
725 CustomHistogram* tentative_histogram =
726 new CustomHistogram(name, registered_ranges);
738 HistogramType CustomHistogram::GetHistogramType() const {
743 vector<Sample> CustomHistogram::ArrayToCustomRanges(
757 CustomHistogram::CustomHistogram(const string& name, function in class:base::CustomHistogram
764 bool CustomHistogram::SerializeInfoImpl(Pickle* pickle) const {
777 double CustomHistogram
[all...]

Completed in 87 milliseconds