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

  /external/chromium_org/base/metrics/
histogram.h 12 // 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 {
653 CustomHistogram(const std::string& name,
670 DISALLOW_COPY_AND_ASSIGN(CustomHistogram);
    [all...]
histogram.cc 700 // 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,
754 bool CustomHistogram::SerializeInfoImpl(Pickle* pickle) const {
767 double CustomHistogram::GetBucketSize(Count current, size_t i) const
    [all...]
  /external/chromium/base/metrics/
histogram.h 124 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 {
668 CustomHistogram(const std::string& name,
675 DISALLOW_COPY_AND_ASSIGN(CustomHistogram);
histogram.cc     [all...]

Completed in 606 milliseconds