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

  /external/libchrome/base/metrics/
histogram_base_unittest.cc 47 HistogramBase* histogram = Histogram::FactoryGet(
73 HistogramBase* histogram = LinearHistogram::FactoryGet(
96 HistogramBase* histogram = BooleanHistogram::FactoryGet(
123 HistogramBase* histogram = CustomHistogram::FactoryGet(
145 HistogramBase* histogram = SparseHistogram::FactoryGet(
178 Histogram::FactoryGet("CRH-Histogram", 1, 10, 5, 0);
179 LinearHistogram::FactoryGet("CRH-Linear", 1, 10, 5, 0);
180 BooleanHistogram::FactoryGet("CRH-Boolean", 0);
181 CustomHistogram::FactoryGet("CRH-Custom", ranges, 0);
182 SparseHistogram::FactoryGet("CRH-Sparse", 0)
    [all...]
statistics_recorder_unittest.cc 217 HistogramBase* histogram1 = Histogram::FactoryGet(
219 HistogramBase* histogram2 = Histogram::FactoryGet(
251 Histogram::FactoryGet("TestHistogram1", 1, 1000, 10, Histogram::kNoFlags);
252 Histogram::FactoryGet("TestHistogram2", 1, 1000, 10, Histogram::kNoFlags);
253 Histogram::FactoryGet("TestHistogram3", 1, 1000, 10, Histogram::kNoFlags);
275 HistogramBase* histogram = Histogram::FactoryGet(
282 HistogramBase* histogram2 = Histogram::FactoryGet(
290 histogram = LinearHistogram::FactoryGet(
297 histogram = BooleanHistogram::FactoryGet(
307 histogram = CustomHistogram::FactoryGet(
    [all...]
histogram_unittest.cc 100 HistogramBase* histogram = Histogram::FactoryGet(
104 HistogramBase* linear_histogram = LinearHistogram::FactoryGet(
111 HistogramBase* custom_histogram = CustomHistogram::FactoryGet(
143 HistogramBase* histogram = LinearHistogram::FactoryGet(
154 Histogram::FactoryGet("DeltaHistogram", 1, 64, 8,
183 Histogram::FactoryGet("FinalDeltaHistogram", 1, 64, 8,
220 Histogram::FactoryGet("Histogram", 1, 64, 8, HistogramBase::kNoFlags));
247 Histogram::FactoryGet("Histogram2", 1, 32, 15, HistogramBase::kNoFlags));
261 LinearHistogram::FactoryGet("Linear", 1, 7, 8, HistogramBase::kNoFlags));
275 LinearHistogram::FactoryGet("Linear2", 1, 6, 5, HistogramBase::kNoFlags))
    [all...]
histogram_delta_serialization.cc 41 LinearHistogram::FactoryGet(
48 LinearHistogram::FactoryGet(
55 Histogram::FactoryGet(
histogram_macros_internal.h 66 * We could do this without any barrier, since FactoryGet entered \
101 base::Histogram::FactoryGet(name, min, max, bucket_count, flag))
126 base::LinearHistogram::FactoryGet(name, 1, boundary, boundary + 1, \
187 base::HistogramBase* histogram = base::SparseHistogram::FactoryGet( \
persistent_histogram_allocator_unittest.cc 60 HistogramBase* histogram = Histogram::FactoryGet(
68 HistogramBase* linear_histogram = LinearHistogram::FactoryGet(
76 HistogramBase* boolean_histogram = BooleanHistogram::FactoryGet(
87 HistogramBase* custom_histogram = CustomHistogram::FactoryGet(
177 LinearHistogram::FactoryGet(LinearHistogramName, 1, 10, 10, 0);
188 SparseHistogram::FactoryGet(SparseHistogramName, 0);
sparse_histogram_unittest.cc 229 SparseHistogram::FactoryGet(histogram_name, HistogramBase::kNoFlags);
243 SparseHistogram::FactoryGet("something.new", HistogramBase::kNoFlags);
247 // Delete it immediately like would have happened within FactoryGet();
254 // Re-creating the histogram via FactoryGet() will return the same one.
256 SparseHistogram::FactoryGet(histogram_name, HistogramBase::kNoFlags);
285 SparseHistogram::FactoryGet(histogram_names[i], HistogramBase::kNoFlags);
303 SparseHistogram::FactoryGet(histogram_names[index],
316 SparseHistogram::FactoryGet(histogram_names[0], HistogramBase::kNoFlags);
histogram.h 59 // value (i.e., the FactoryGet always returns the same value). FactoryGet
114 static HistogramBase* FactoryGet(const std::string& name,
128 static HistogramBase* FactoryGet(const char* name,
329 static HistogramBase* FactoryGet(const std::string& name,
343 static HistogramBase* FactoryGet(const char* name,
438 static HistogramBase* FactoryGet(const std::string& name, int32_t flags);
443 static HistogramBase* FactoryGet(const char* name, int32_t flags);
484 static HistogramBase* FactoryGet(const std::string& name,
491 static HistogramBase* FactoryGet(const char* name
    [all...]
histogram_delta_serialization_unittest.cc 25 HistogramBase* histogram = Histogram::FactoryGet(
histogram_macros_local.h 28 base::BooleanHistogram::FactoryGet(name, base::Histogram::kNoFlags))
histogram.cc 235 HistogramBase* Histogram::FactoryGet(const std::string& name,
252 return FactoryGet(name, static_cast<Sample>(minimum.InMilliseconds()),
257 HistogramBase* Histogram::FactoryGet(const char* name,
262 return FactoryGet(std::string(name), minimum, maximum, bucket_count, flags);
576 HistogramBase* histogram = Histogram::FactoryGet(
779 HistogramBase* LinearHistogram::FactoryGet(const std::string& name,
793 return FactoryGet(name, static_cast<Sample>(minimum.InMilliseconds()),
798 HistogramBase* LinearHistogram::FactoryGet(const char* name,
803 return FactoryGet(std::string(name), minimum, maximum, bucket_count, flags);
    [all...]
histogram_macros.h 54 base::BooleanHistogram::FactoryGet(name, \
269 // base::Histogram::FactoryGet(
306 // |custom_ranges|. See comments above CustomRanges::FactoryGet about the
312 base::CustomHistogram::FactoryGet(name, custom_ranges, \
sparse_histogram.h 32 static HistogramBase* FactoryGet(const std::string& name, int32_t flags);
65 // Clients should always use FactoryGet to create SparseHistogram.
sparse_histogram.cc 25 HistogramBase* SparseHistogram::FactoryGet(const std::string& name,
213 return SparseHistogram::FactoryGet(histogram_name, flags);
histogram_base.cc 141 // Calling FactoryGet() here rather than using a histogram-macro works
145 report_histogram_ = LinearHistogram::FactoryGet(
persistent_memory_allocator.cc 467 allocs_histogram_ = Histogram::FactoryGet(
473 used_histogram_ = LinearHistogram::FactoryGet(
478 errors_histogram_ = SparseHistogram::FactoryGet(
    [all...]
persistent_histogram_allocator.cc 515 histogram_pointer = LinearHistogram::FactoryGet(
668 // FactoryGet() which will create the histogram in the global persistent-
    [all...]
  /external/libmojo/base/android/
record_histogram.cc 78 histogram = BooleanHistogram::FactoryGet(
98 LinearHistogram::FactoryGet(histogram_name, 1, boundary, boundary + 1,
124 Histogram::FactoryGet(histogram_name, min, max, num_buckets,
148 LinearHistogram::FactoryGet(histogram_name, min, max, num_buckets,
162 histogram = SparseHistogram::FactoryGet(
185 // This intentionally uses FactoryGet and not FactoryTimeGet. FactoryTimeGet
188 histogram = Histogram::FactoryGet(histogram_name, min, max, bucket_count,

Completed in 276 milliseconds