Searched defs:CustomHistogram (Results 1 - 4 of 4) 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
214 // You can use the helper function CustomHistogram::ArrayToCustomRanges to
218 base::CustomHistogram::FactoryGet(name, custom_ranges, \
352 base::CustomHistogram::FactoryGet(name, custom_ranges, \
361 class CustomHistogram;
630 // CustomHistogram is a histogram for a set of custom integers.
631 class BASE_EXPORT CustomHistogram : public Histogram { class in namespace:base
653 CustomHistogram(const std::string& name,
670 DISALLOW_COPY_AND_ASSIGN(CustomHistogram);
[all...]
H A Dhistogram.cc700 // CustomHistogram:
703 HistogramBase* CustomHistogram::FactoryGet(const string& name,
715 CustomHistogram* tentative_histogram =
716 new CustomHistogram(name, registered_ranges);
728 HistogramType CustomHistogram::GetHistogramType() const {
733 vector<Sample> CustomHistogram::ArrayToCustomRanges(
747 CustomHistogram::CustomHistogram(const string& name, function in class:base::CustomHistogram
754 bool CustomHistogram::SerializeInfoImpl(Pickle* pickle) const {
767 double CustomHistogram
[all...]
/external/chromium/base/metrics/
H A Dhistogram.h124 counter = base::CustomHistogram::FactoryGet(name, custom_ranges, \
253 counter = base::CustomHistogram::FactoryGet(name, custom_ranges, \
262 class CustomHistogram;
656 // CustomHistogram is a histogram for a set of custom integers.
657 class BASE_API CustomHistogram : public Histogram { class in namespace:base
668 CustomHistogram(const std::string& name,
675 DISALLOW_COPY_AND_ASSIGN(CustomHistogram);
H A Dhistogram.cc903 // CustomHistogram:
906 Histogram* CustomHistogram::FactoryGet(const std::string& name,
926 CustomHistogram* tentative_histogram = new CustomHistogram(name, ranges);
939 Histogram::ClassType CustomHistogram::histogram_type() const {
943 CustomHistogram::CustomHistogram(const std::string& name, function in class:base::CustomHistogram
951 void CustomHistogram::InitializedCustomBucketRange(
961 double CustomHistogram::GetBucketSize(Count current, size_t i) const {

Completed in 184 milliseconds