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

  /external/chromium_org/base/metrics/
histogram.h 198 base::BooleanHistogram::FactoryGet(name, base::Histogram::kNoFlags))
340 base::BooleanHistogram::FactoryGet(name, \
360 class BooleanHistogram;
611 // BooleanHistogram is a histogram for booleans.
612 class BASE_EXPORT BooleanHistogram : public LinearHistogram {
619 BooleanHistogram(const std::string& name, const BucketRanges* ranges);
625 DISALLOW_COPY_AND_ASSIGN(BooleanHistogram);
histogram.cc 645 // This section provides implementation for BooleanHistogram.
648 HistogramBase* BooleanHistogram::FactoryGet(const string& name, int32 flags) {
657 BooleanHistogram* tentative_histogram =
658 new BooleanHistogram(name, registered_ranges);
669 HistogramType BooleanHistogram::GetHistogramType() const {
673 BooleanHistogram::BooleanHistogram(const string& name,
677 HistogramBase* BooleanHistogram::DeserializeInfoImpl(PickleIterator* iter) {
690 HistogramBase* histogram = BooleanHistogram::FactoryGet(
  /external/chromium/base/metrics/
histogram.h 235 counter = base::BooleanHistogram::FactoryGet(name, \
261 class BooleanHistogram;
389 // This method is an interface, used only by BooleanHistogram.
639 // BooleanHistogram is a histogram for booleans.
640 class BASE_API BooleanHistogram : public LinearHistogram {
649 explicit BooleanHistogram(const std::string& name);
651 DISALLOW_COPY_AND_ASSIGN(BooleanHistogram);
histogram.cc 280 render_histogram = BooleanHistogram::FactoryGet(histogram_name, flags);
871 // This section provides implementation for BooleanHistogram.
874 Histogram* BooleanHistogram::FactoryGet(const std::string& name, Flags flags) {
879 BooleanHistogram* tentative_histogram = new BooleanHistogram(name);
    [all...]

Completed in 147 milliseconds