HomeSort by relevance Sort by last modified time
    Searched refs:FactoryGet (Results 1 - 10 of 10) sorted by null

  /external/libchrome/base/metrics/
histogram_unittest.cc 52 HistogramBase* histogram = Histogram::FactoryGet(
56 HistogramBase* linear_histogram = LinearHistogram::FactoryGet(
63 HistogramBase* custom_histogram = CustomHistogram::FactoryGet(
79 HistogramBase* histogram = LinearHistogram::FactoryGet(
101 Histogram::FactoryGet("Histogram", 1, 64, 8, HistogramBase::kNoFlags));
128 Histogram::FactoryGet("Histogram2", 1, 32, 15, HistogramBase::kNoFlags));
142 LinearHistogram::FactoryGet("Linear", 1, 7, 8, HistogramBase::kNoFlags));
156 LinearHistogram::FactoryGet("Linear2", 1, 6, 5, HistogramBase::kNoFlags));
180 CustomHistogram::FactoryGet("TestCustomHistogram1", custom_ranges,
194 CustomHistogram::FactoryGet("TestCustomHistogram2", custom_ranges
    [all...]
statistics_recorder_unittest.cc 146 HistogramBase* histogram1 = Histogram::FactoryGet(
148 HistogramBase* histogram2 = Histogram::FactoryGet(
157 Histogram::FactoryGet("TestHistogram1", 1, 1000, 10, Histogram::kNoFlags);
158 Histogram::FactoryGet("TestHistogram2", 1, 1000, 10, Histogram::kNoFlags);
159 Histogram::FactoryGet("TestHistogram3", 1, 1000, 10, Histogram::kNoFlags);
181 HistogramBase* histogram = Histogram::FactoryGet(
188 HistogramBase* histogram2 = Histogram::FactoryGet(
196 histogram = LinearHistogram::FactoryGet(
203 histogram = BooleanHistogram::FactoryGet(
213 histogram = CustomHistogram::FactoryGet(
    [all...]
histogram_macros.h 41 // histogram. FactoryGet includes locks on a global histogram name map
43 histogram_pointer = base::Histogram::FactoryGet(
50 // We could do this without any barrier, since FactoryGet entered and
65 // of which FactoryGet method to use. The different FactoryGet methods have
115 base::Histogram::FactoryGet(name, min, max, bucket_count, \
121 base::LinearHistogram::FactoryGet(name, 1, boundary, boundary + 1, \
129 base::BooleanHistogram::FactoryGet(name, base::Histogram::kNoFlags))
139 base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
144 // CustomRanges::FactoryGet about the requirement of |custom_ranges|
    [all...]
histogram_base_unittest.cc 37 HistogramBase* histogram = Histogram::FactoryGet(
63 HistogramBase* histogram = LinearHistogram::FactoryGet(
86 HistogramBase* histogram = BooleanHistogram::FactoryGet(
113 HistogramBase* histogram = CustomHistogram::FactoryGet(
135 HistogramBase* histogram = SparseHistogram::FactoryGet(
histogram.h 61 // value (i.e., the FactoryGet always returns the same value). FactoryGet
116 static HistogramBase* FactoryGet(const std::string& name,
130 static HistogramBase* FactoryGet(const char* name,
291 static HistogramBase* FactoryGet(const std::string& name,
305 static HistogramBase* FactoryGet(const char* name,
376 static HistogramBase* FactoryGet(const std::string& name, int32_t flags);
381 static HistogramBase* FactoryGet(const char* name, int32_t flags);
404 static HistogramBase* FactoryGet(const std::string& name,
411 static HistogramBase* FactoryGet(const char* name
    [all...]
sparse_histogram.h 27 base::HistogramBase* histogram = base::SparseHistogram::FactoryGet( \
38 static HistogramBase* FactoryGet(const std::string& name, int32_t flags);
61 // Clients should always use FactoryGet to create SparseHistogram.
histogram.cc 87 HistogramBase* Histogram::FactoryGet(const std::string& name,
131 return FactoryGet(name, static_cast<Sample>(minimum.InMilliseconds()),
136 HistogramBase* Histogram::FactoryGet(const char* name,
141 return FactoryGet(std::string(name), minimum, maximum, bucket_count, flags);
390 HistogramBase* histogram = Histogram::FactoryGet(
550 HistogramBase* LinearHistogram::FactoryGet(const std::string& name,
564 return FactoryGet(name, static_cast<Sample>(minimum.InMilliseconds()),
569 HistogramBase* LinearHistogram::FactoryGet(const char* name,
574 return FactoryGet(std::string(name), minimum, maximum, bucket_count, flags);
696 HistogramBase* histogram = LinearHistogram::FactoryGet(
    [all...]
sparse_histogram.cc 22 HistogramBase* SparseHistogram::FactoryGet(const std::string& name,
119 return SparseHistogram::FactoryGet(histogram_name, flags);
  /system/core/metricsd/uploader/
bn_metricsd_impl.cc 40 base::HistogramBase* histogram = base::Histogram::FactoryGet(
45 // FactoryGet will print a useful message if that is the case.
55 base::HistogramBase* histogram = base::LinearHistogram::FactoryGet(
60 // FactoryGet will print a useful message if that is the case.
68 base::HistogramBase* histogram = base::SparseHistogram::FactoryGet(
73 // FactoryGet will print a useful message if that is the case.
upload_service_test.cc 68 base::HistogramBase* histogram = base::SparseHistogram::FactoryGet(
75 base::HistogramBase* histogram = base::Histogram::FactoryGet(

Completed in 132 milliseconds