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

  /external/chromium_org/base/metrics/
sparse_histogram.h 22 // The common code for different SparseHistogram macros.
26 base::SparseHistogram::FactoryGet(name, flag)); \
57 class BASE_EXPORT_PRIVATE SparseHistogram : public HistogramBase {
63 virtual ~SparseHistogram();
83 // Clients should always use FactoryGet to create SparseHistogram.
84 explicit SparseHistogram(const std::string& name);
112 DISALLOW_COPY_AND_ASSIGN(SparseHistogram);
sparse_histogram.cc 22 HistogramBase* SparseHistogram::FactoryGet(const string& name, int32 flags) {
27 HistogramBase* tentative_histogram = new SparseHistogram(name);
36 SparseHistogram::~SparseHistogram() {}
38 HistogramType SparseHistogram::GetHistogramType() const {
42 bool SparseHistogram::HasConstructionArguments(
46 // SparseHistogram never has min/max/bucket_count limit.
50 void SparseHistogram::Add(Sample value) {
55 scoped_ptr<HistogramSamples> SparseHistogram::SnapshotSamples() const {
63 void SparseHistogram::AddSamples(const HistogramSamples& samples)
    [all...]

Completed in 426 milliseconds