Home
last modified time | relevance | path

Searched refs:FactoryGet (Results 1 – 16 of 16) sorted by relevance

/external/libchrome/base/metrics/
Dhistogram_base_unittest.cc47 HistogramBase* histogram = Histogram::FactoryGet( in TEST_F()
73 HistogramBase* histogram = LinearHistogram::FactoryGet( in TEST_F()
96 HistogramBase* histogram = BooleanHistogram::FactoryGet( in TEST_F()
123 HistogramBase* histogram = CustomHistogram::FactoryGet( in TEST_F()
145 HistogramBase* histogram = SparseHistogram::FactoryGet( in TEST_F()
178 Histogram::FactoryGet("CRH-Histogram", 1, 10, 5, 0); in TEST_F()
179 LinearHistogram::FactoryGet("CRH-Linear", 1, 10, 5, 0); in TEST_F()
180 BooleanHistogram::FactoryGet("CRH-Boolean", 0); in TEST_F()
181 CustomHistogram::FactoryGet("CRH-Custom", ranges, 0); in TEST_F()
182 SparseHistogram::FactoryGet("CRH-Sparse", 0); in TEST_F()
[all …]
Dhistogram_unittest.cc99 HistogramBase* histogram = Histogram::FactoryGet( in TEST_P()
103 HistogramBase* linear_histogram = LinearHistogram::FactoryGet( in TEST_P()
110 HistogramBase* custom_histogram = CustomHistogram::FactoryGet( in TEST_P()
142 HistogramBase* histogram = LinearHistogram::FactoryGet( in TEST_P()
153 Histogram::FactoryGet("DeltaHistogram", 1, 64, 8, in TEST_P()
182 Histogram::FactoryGet("FinalDeltaHistogram", 1, 64, 8, in TEST_P()
219 Histogram::FactoryGet("Histogram", 1, 64, 8, HistogramBase::kNoFlags)); in TEST_P()
246 Histogram::FactoryGet("Histogram2", 1, 32, 15, HistogramBase::kNoFlags)); in TEST_P()
260 LinearHistogram::FactoryGet("Linear", 1, 7, 8, HistogramBase::kNoFlags)); in TEST_P()
274 LinearHistogram::FactoryGet("Linear2", 1, 6, 5, HistogramBase::kNoFlags)); in TEST_P()
[all …]
Dstatistics_recorder_unittest.cc216 HistogramBase* histogram1 = Histogram::FactoryGet( in TEST_P()
218 HistogramBase* histogram2 = Histogram::FactoryGet( in TEST_P()
250 Histogram::FactoryGet("TestHistogram1", 1, 1000, 10, Histogram::kNoFlags); in TEST_P()
251 Histogram::FactoryGet("TestHistogram2", 1, 1000, 10, Histogram::kNoFlags); in TEST_P()
252 Histogram::FactoryGet("TestHistogram3", 1, 1000, 10, Histogram::kNoFlags); in TEST_P()
274 HistogramBase* histogram = Histogram::FactoryGet( in TEST_P()
281 HistogramBase* histogram2 = Histogram::FactoryGet( in TEST_P()
289 histogram = LinearHistogram::FactoryGet( in TEST_P()
296 histogram = BooleanHistogram::FactoryGet( in TEST_P()
306 histogram = CustomHistogram::FactoryGet( in TEST_P()
[all …]
Dhistogram_macros.h144 base::Histogram::FactoryGet(name, min, max, bucket_count, \
150 base::LinearHistogram::FactoryGet(name, 1, boundary, boundary + 1, \
158 base::BooleanHistogram::FactoryGet(name, base::Histogram::kNoFlags))
168 base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
178 base::CustomHistogram::FactoryGet(name, custom_ranges, \
228 base::Histogram::FactoryGet(name, min, max, bucket_count, \
245 base::BooleanHistogram::FactoryGet(name, \
263 base::CustomHistogram::FactoryGet(name, custom_ranges, \
Dhistogram.h119 static HistogramBase* FactoryGet(const std::string& name,
133 static HistogramBase* FactoryGet(const char* name,
334 static HistogramBase* FactoryGet(const std::string& name,
348 static HistogramBase* FactoryGet(const char* name,
443 static HistogramBase* FactoryGet(const std::string& name, int32_t flags);
448 static HistogramBase* FactoryGet(const char* name, int32_t flags);
489 static HistogramBase* FactoryGet(const std::string& name,
496 static HistogramBase* FactoryGet(const char* name,
Dpersistent_histogram_allocator_unittest.cc60 HistogramBase* histogram = Histogram::FactoryGet( in TEST_F()
68 HistogramBase* linear_histogram = LinearHistogram::FactoryGet( in TEST_F()
76 HistogramBase* boolean_histogram = BooleanHistogram::FactoryGet( in TEST_F()
87 HistogramBase* custom_histogram = CustomHistogram::FactoryGet( in TEST_F()
168 HistogramBase* histogram = LinearHistogram::FactoryGet( in TEST_F()
Dhistogram.cc235 HistogramBase* Histogram::FactoryGet(const std::string& name, in FactoryGet() function in base::Histogram
252 return FactoryGet(name, static_cast<Sample>(minimum.InMilliseconds()), in FactoryTimeGet()
257 HistogramBase* Histogram::FactoryGet(const char* name, in FactoryGet() function in base::Histogram
262 return FactoryGet(std::string(name), minimum, maximum, bucket_count, flags); in FactoryGet()
576 HistogramBase* histogram = Histogram::FactoryGet( in DeserializeInfoImpl()
781 HistogramBase* LinearHistogram::FactoryGet(const std::string& name, in FactoryGet() function in base::LinearHistogram
795 return FactoryGet(name, static_cast<Sample>(minimum.InMilliseconds()), in FactoryTimeGet()
800 HistogramBase* LinearHistogram::FactoryGet(const char* name, in FactoryGet() function in base::LinearHistogram
805 return FactoryGet(std::string(name), minimum, maximum, bucket_count, flags); in FactoryGet()
922 HistogramBase* histogram = LinearHistogram::FactoryGet( in DeserializeInfoImpl()
[all …]
Dsparse_histogram_unittest.cc228 SparseHistogram::FactoryGet(histogram_name, HistogramBase::kNoFlags); in TEST_P()
242 SparseHistogram::FactoryGet("something.new", HistogramBase::kNoFlags); in TEST_P()
255 SparseHistogram::FactoryGet(histogram_name, HistogramBase::kNoFlags); in TEST_P()
284 SparseHistogram::FactoryGet(histogram_names[i], HistogramBase::kNoFlags); in TEST_P()
302 SparseHistogram::FactoryGet(histogram_names[index], in TEST_P()
315 SparseHistogram::FactoryGet(histogram_names[0], HistogramBase::kNoFlags); in TEST_P()
Dhistogram_delta_serialization.cc41 LinearHistogram::FactoryGet( in HistogramDeltaSerialization()
48 LinearHistogram::FactoryGet( in HistogramDeltaSerialization()
55 Histogram::FactoryGet( in HistogramDeltaSerialization()
Dsparse_histogram.h48 base::HistogramBase* histogram = base::SparseHistogram::FactoryGet( \
60 static HistogramBase* FactoryGet(const std::string& name, int32_t flags);
Dhistogram_delta_serialization_unittest.cc25 HistogramBase* histogram = Histogram::FactoryGet( in TEST()
Dsparse_histogram.cc25 HistogramBase* SparseHistogram::FactoryGet(const std::string& name, in FactoryGet() function in base::SparseHistogram
213 return SparseHistogram::FactoryGet(histogram_name, flags); in DeserializeInfoImpl()
Dhistogram_base.cc144 report_histogram_ = LinearHistogram::FactoryGet( in EnableActivityReportHistogram()
Dpersistent_memory_allocator.cc398 used_histogram_ = LinearHistogram::FactoryGet( in CreateTrackingHistograms()
403 allocs_histogram_ = Histogram::FactoryGet( in CreateTrackingHistograms()
Dpersistent_histogram_allocator.cc491 histogram_pointer = LinearHistogram::FactoryGet( in GetCreateHistogramResultHistogram()
/external/libmojo/base/android/
Drecord_histogram.cc74 histogram = BooleanHistogram::FactoryGet( in BooleanHistogram()
94 LinearHistogram::FactoryGet(histogram_name, 1, boundary, boundary + 1, in EnumeratedHistogram()
118 Histogram::FactoryGet(histogram_name, min, max, num_buckets, in CustomCountHistogram()
142 LinearHistogram::FactoryGet(histogram_name, min, max, num_buckets, in LinearCountHistogram()
156 histogram = SparseHistogram::FactoryGet( in SparseHistogram()
182 histogram = Histogram::FactoryGet(histogram_name, min, max, bucket_count, in CustomTimesHistogram()