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

1 2 3

  /external/chromium_org/base/metrics/
statistics_recorder_unittest.cc 142 HistogramBase* histogram1 = Histogram::FactoryGet(
144 HistogramBase* histogram2 = Histogram::FactoryGet(
153 Histogram::FactoryGet("TestHistogram1", 1, 1000, 10, Histogram::kNoFlags);
154 Histogram::FactoryGet("TestHistogram2", 1, 1000, 10, Histogram::kNoFlags);
155 Histogram::FactoryGet("TestHistogram3", 1, 1000, 10, Histogram::kNoFlags);
177 HistogramBase* histogram = Histogram::FactoryGet(
184 HistogramBase* histogram2 = Histogram::FactoryGet(
192 histogram = LinearHistogram::FactoryGet(
199 histogram = BooleanHistogram::FactoryGet(
209 histogram = CustomHistogram::FactoryGet(
    [all...]
histogram_unittest.cc 52 HistogramBase* histogram = Histogram::FactoryGet(
56 HistogramBase* linear_histogram = LinearHistogram::FactoryGet(
63 HistogramBase* custom_histogram = CustomHistogram::FactoryGet(
82 HistogramBase* histogram = LinearHistogram::FactoryGet(
104 Histogram::FactoryGet("Histogram", 1, 64, 8, HistogramBase::kNoFlags));
131 Histogram::FactoryGet("Histogram2", 1, 32, 15, HistogramBase::kNoFlags));
145 LinearHistogram::FactoryGet("Linear", 1, 7, 8, HistogramBase::kNoFlags));
159 LinearHistogram::FactoryGet("Linear2", 1, 6, 5, HistogramBase::kNoFlags));
183 CustomHistogram::FactoryGet("TestCustomHistogram1", custom_ranges,
197 CustomHistogram::FactoryGet("TestCustomHistogram2", custom_ranges
    [all...]
sparse_histogram.h 26 base::SparseHistogram::FactoryGet(name, flag)); \
61 static HistogramBase* FactoryGet(const std::string& name, int32 flags);
83 // Clients should always use FactoryGet to create SparseHistogram.
histogram_base_unittest.cc 39 HistogramBase* histogram = Histogram::FactoryGet(
65 HistogramBase* histogram = Histogram::FactoryGet(
99 HistogramBase* histogram = LinearHistogram::FactoryGet(
122 HistogramBase* histogram = BooleanHistogram::FactoryGet(
149 HistogramBase* histogram = CustomHistogram::FactoryGet(
171 HistogramBase* histogram = SparseHistogram::FactoryGet(
histogram.h 58 // value (i.e., the FactoryGet always returns the same value). FactoryGet
116 // histogram. FactoryGet includes locks on a global histogram name map
118 histogram_pointer = base::Histogram::FactoryGet(
125 // We could do this without any barrier, since FactoryGet entered and
140 // of which FactoryGet method to use. The different FactoryGet methods have
190 base::Histogram::FactoryGet(name, min, max, bucket_count, \
198 base::BooleanHistogram::FactoryGet(name, base::Histogram::kNoFlags))
208 base::LinearHistogram::FactoryGet(name, 1, boundary_value,
    [all...]
sparse_histogram.cc 22 HistogramBase* SparseHistogram::FactoryGet(const string& name, int32 flags) {
101 return SparseHistogram::FactoryGet(histogram_name, flags);
histogram.cc 87 HistogramBase* Histogram::FactoryGet(const string& name,
122 return FactoryGet(name, minimum.InMilliseconds(), maximum.InMilliseconds(),
357 HistogramBase* histogram = Histogram::FactoryGet(
516 HistogramBase* LinearHistogram::FactoryGet(const string& name,
530 return FactoryGet(name, minimum.InMilliseconds(), maximum.InMilliseconds(),
635 HistogramBase* histogram = LinearHistogram::FactoryGet(
648 HistogramBase* BooleanHistogram::FactoryGet(const string& name, int32 flags) {
690 HistogramBase* histogram = BooleanHistogram::FactoryGet(
703 HistogramBase* CustomHistogram::FactoryGet(const string& name,
741 // values, FactoryGet will take care of removing them
    [all...]
  /external/chromium/base/metrics/
histogram_unittest.cc 21 Histogram* histogram(Histogram::FactoryGet(
24 Histogram* histogram1(Histogram::FactoryGet(
30 Histogram* linear_histogram(LinearHistogram::FactoryGet(
33 Histogram* linear_histogram1(LinearHistogram::FactoryGet(
44 Histogram* custom_histogram(CustomHistogram::FactoryGet(
47 Histogram* custom_histogram1(CustomHistogram::FactoryGet(
83 Histogram* histogram(Histogram::FactoryGet(
89 Histogram* histogram1(Histogram::FactoryGet(
96 Histogram* linear_histogram(LinearHistogram::FactoryGet(
103 Histogram* linear_histogram1(LinearHistogram::FactoryGet(
    [all...]
histogram.h 35 // value (i.e., the FactoryGet always returns the same value). FactoryGet
79 counter = base::Histogram::FactoryGet(name, min, max, bucket_count, \
115 counter = base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
124 counter = base::CustomHistogram::FactoryGet(name, custom_ranges, \
217 counter = base::Histogram::FactoryGet(name, min, max, bucket_count, \
235 counter = base::BooleanHistogram::FactoryGet(name, \
244 counter = base::LinearHistogram::FactoryGet(name, 1, boundary_value, \
253 counter = base::CustomHistogram::FactoryGet(name, custom_ranges, \
376 static Histogram* FactoryGet(const std::string& name
    [all...]
  /external/chromium_org/chrome/browser/policy/
policy_load_status.cc 20 : histogram_(base::LinearHistogram::FactoryGet(
  /external/chromium_org/chrome/browser/importer/
importer_uma.cc 61 base::LinearHistogram::FactoryGet(
  /external/chromium_org/net/disk_cache/
stats_histogram.h 41 static StatsHistogram* FactoryGet(const std::string& name,
histogram_macros.h 26 counter = base::Histogram::FactoryGet( \
58 counter = base::LinearHistogram::FactoryGet( \
stats_histogram.cc 42 StatsHistogram* StatsHistogram::FactoryGet(const std::string& name,
  /external/chromium_org/net/socket/
client_socket_pool_histograms.cc 26 socket_type_ = LinearHistogram::FactoryGet("Net.SocketType_" + pool_name, 1,
48 error_code_ = CustomHistogram::FactoryGet(
  /external/chromium_org/content/renderer/pepper/
ppb_uma_private_impl.cc 57 base::Histogram::FactoryGet(
75 base::LinearHistogram::FactoryGet(
  /external/chromium/net/disk_cache/
histogram_macros.h 27 counter = base::Histogram::FactoryGet( \
59 counter = base::LinearHistogram::FactoryGet( \
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_database.cc 116 base::Histogram::FactoryGet(
129 base::Histogram::FactoryGet(name,
148 base::LinearHistogram::FactoryGet(
161 base::LinearHistogram::FactoryGet(
170 base::LinearHistogram::FactoryGet(
231 base::LinearHistogram::FactoryGet(
259 base::Histogram::FactoryGet(histogram_name,
  /external/chromium/chrome/browser/extensions/
extension_metrics_module.cc 80 counter = LinearHistogram::FactoryGet(full_name,
86 counter = Histogram::FactoryGet(full_name,
  /external/chromium/net/socket/
client_socket_pool_histograms.cc 23 socket_type_ = LinearHistogram::FactoryGet("Net.SocketType_" + pool_name, 1,
  /external/chromium_org/chrome/browser/chromeos/
external_metrics.cc 242 base::HistogramBase* counter = base::Histogram::FactoryGet(
263 base::HistogramBase* counter = base::LinearHistogram::FactoryGet(
279 base::HistogramBase* counter = base::SparseHistogram::FactoryGet(
  /external/chromium_org/content/browser/loader/
buffered_resource_handler.cc 43 nosniff_usage = base::BooleanHistogram::FactoryGet(
50 nosniff_otherwise = base::BooleanHistogram::FactoryGet(
56 nosniff_empty_mime_type = base::BooleanHistogram::FactoryGet(
  /external/chromium_org/chrome/browser/ui/webui/
metrics_handler.cc 78 base::LinearHistogram::FactoryGet(
  /external/chromium/chrome/browser/chromeos/
external_metrics.cc 89 base::Histogram* counter = base::Histogram::FactoryGet(
104 base::Histogram* counter = base::LinearHistogram::FactoryGet(
  /external/chromium/chrome/browser/
jankometer.cc 138 process_times_(base::Histogram::FactoryGet(
141 total_times_(base::Histogram::FactoryGet(

Completed in 279 milliseconds

1 2 3