Home
last modified time | relevance | path

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

/external/chromium/base/
Dhistogram_unittest.cc22 scoped_refptr<Histogram> histogram = Histogram::FactoryGet( in TEST()
24 scoped_refptr<Histogram> histogram1 = Histogram::FactoryGet( in TEST()
27 scoped_refptr<Histogram> linear_histogram = LinearHistogram::FactoryGet( in TEST()
29 scoped_refptr<Histogram> linear_histogram1 = LinearHistogram::FactoryGet( in TEST()
64 scoped_refptr<Histogram> histogram = Histogram::FactoryGet( in TEST()
69 scoped_refptr<Histogram> histogram1 = Histogram::FactoryGet( in TEST()
75 scoped_refptr<Histogram> linear_histogram = LinearHistogram::FactoryGet( in TEST()
77 scoped_refptr<Histogram> linear_histogram1 = LinearHistogram::FactoryGet( in TEST()
113 scoped_refptr<Histogram> histogram = Histogram::FactoryGet( in TEST()
124 scoped_refptr<Histogram> short_histogram = Histogram::FactoryGet( in TEST()
[all …]
Dhistogram.h61 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
72 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
79 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
88 static scoped_refptr<Histogram> counter = LinearHistogram::FactoryGet( \
146 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
153 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
168 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
183 static scoped_refptr<Histogram> counter = LinearHistogram::FactoryGet( \
283 static scoped_refptr<Histogram> FactoryGet(const std::string& name,
285 static scoped_refptr<Histogram> FactoryGet(const std::string& name,
[all …]
Dhistogram.cc23 scoped_refptr<Histogram> Histogram::FactoryGet(const std::string& name, in FactoryGet() function in Histogram
51 scoped_refptr<Histogram> Histogram::FactoryGet(const std::string& name, in FactoryGet() function in Histogram
54 return FactoryGet(name, minimum.InMilliseconds(), maximum.InMilliseconds(), in FactoryGet()
444 render_histogram = Histogram::FactoryGet( in DeserializeHistogramInfo()
447 render_histogram = LinearHistogram::FactoryGet( in DeserializeHistogramInfo()
450 render_histogram = BooleanHistogram::FactoryGet(histogram_name, flags); in DeserializeHistogramInfo()
577 scoped_refptr<Histogram> LinearHistogram::FactoryGet( in FactoryGet() function in LinearHistogram
604 scoped_refptr<Histogram> LinearHistogram::FactoryGet(const std::string& name, in FactoryGet() function in LinearHistogram
607 return FactoryGet(name, minimum.InMilliseconds(), maximum.InMilliseconds(), in FactoryGet()
672 scoped_refptr<Histogram> BooleanHistogram::FactoryGet(const std::string& name, in FactoryGet() function in BooleanHistogram
Dmessage_loop.cc534 message_histogram_ = LinearHistogram::FactoryGet("MsgLoop:" + thread_name_, in StartHistogrammer()
/external/chromium/net/base/
Dmime_sniffer.cc216 LinearHistogram::FactoryGet(name, 1, array_size - 1, array_size, in UMASnifferHistogramGet()