Searched defs:histograms (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/chrome/browser/accessibility/
H A Dbrowser_accessibility_state_browsertest.cc13 // histograms won't get updated.
18 base::HistogramTester histograms; local
21 histograms.ExpectTotalCount("Accessibility.State", 1);
23 histograms.ExpectTotalCount("Accessibility.WinScreenReader", 1);
25 histograms.ExpectTotalCount("Accessibility.CrosSpokenFeedback", 1);
/external/chromium_org/chrome/test/nacl/
H A Dnacl_browsertest_uma.cc15 base::HistogramTester histograms;
19 // Make sure histograms from child processes have been accumulated in the
24 histograms.ExpectUniqueSample("NaCl.LoadStatus.Plugin",
28 histograms.ExpectUniqueSample("NaCl.LoadStatus.SelLdr",
40 histograms.ExpectUniqueSample("NaCl.ValidationCache.Query",
43 histograms.ExpectUniqueSample("NaCl.ValidationCache.Set",
49 histograms.ExpectUniqueSample("NaCl.ValidationCache.Query",
52 histograms.ExpectUniqueSample("NaCl.ValidationCache.Set",
56 // Make sure we have other important histograms.
58 histograms
92 base::HistogramTester histograms; local
140 base::HistogramTester histograms; local
180 base::HistogramTester histograms; local
[all...]
/external/chromium_org/base/metrics/
H A Dhistogram_snapshot_manager_unittest.cc63 // kNoFlags filter should record all histograms.
70 const std::vector<std::string>& histograms = local
72 EXPECT_EQ(2U, histograms.size());
73 EXPECT_EQ("UmaHistogram", histograms[0]);
74 EXPECT_EQ("UmaStabilityHistogram", histograms[1]);
85 const std::vector<std::string>& histograms = local
87 EXPECT_EQ(2U, histograms.size());
88 EXPECT_EQ("UmaHistogram", histograms[0]);
89 EXPECT_EQ("UmaStabilityHistogram", histograms[1]);
100 const std::vector<std::string>& histograms local
[all...]
H A Dsparse_histogram_unittest.cc71 StatisticsRecorder::Histograms histograms; local
72 StatisticsRecorder::GetHistograms(&histograms);
74 ASSERT_EQ(1U, histograms.size());
75 HistogramBase* sparse_histogram = histograms[0];
96 StatisticsRecorder::Histograms histograms; local
97 StatisticsRecorder::GetHistograms(&histograms);
98 ASSERT_EQ(2U, histograms.size());
100 std::string name1 = histograms[0]->histogram_name();
101 std::string name2 = histograms[1]->histogram_name();
H A Dhistogram_snapshot_manager.cc31 StatisticsRecorder::Histograms histograms; local
32 StatisticsRecorder::GetHistograms(&histograms);
33 for (StatisticsRecorder::Histograms::const_iterator it = histograms.begin();
34 histograms.end() != it;
51 // Crash if we detect that our histograms have been overwritten. This may be
/external/chromium_org/chrome/browser/extensions/api/feedback_private/
H A Dfeedback_service_chromeos.cc24 virtual void GetHistograms(std::string* histograms) OVERRIDE;
49 void FeedbackServiceImpl::GetHistograms(std::string* histograms) { argument
50 *histograms = base::StatisticsRecorder::ToJSON(std::string());
H A Dfeedback_service_nonchromeos.cc24 virtual void GetHistograms(std::string* histograms) OVERRIDE;
55 void FeedbackServiceImpl::GetHistograms(std::string* histograms) { argument
/external/chromium_org/chrome/browser/ui/views/profiles/
H A Dprofile_chooser_view_browsertest.cc87 base::HistogramTester histograms; local
97 histograms.ExpectUniqueSample("Profile.NewAvatarMenu.Upgrade",
/external/chromium_org/base/test/
H A Dhistogram_tester.cc20 StatisticsRecorder::Histograms histograms; local
21 StatisticsRecorder::GetSnapshot(std::string(), &histograms); local
22 for (size_t i = 0; i < histograms.size(); ++i) {
23 histograms_snapshot_[histograms[i]->histogram_name()] =
24 histograms[i]->SnapshotSamples().release();
/external/chromium_org/third_party/libwebp/enc/
H A Dhistogram.h12 // Models the histograms of literal and distance codes.
31 // A simple container for histograms of data.
48 // Collection of histograms with fixed capacity, allocated as one
53 VP8LHistogram** histograms; member in struct:__anon13276
81 // Allocate an array of pointer to histograms, allocated and initialized
/external/webp/src/enc/
H A Dhistogram.h12 // Models the histograms of literal and distance codes.
31 // A simple container for histograms of data.
48 // Collection of histograms with fixed capacity, allocated as one
53 VP8LHistogram** histograms; member in struct:__anon33373
81 // Allocate an array of pointer to histograms, allocated and initialized
/external/chromium_org/components/feedback/
H A Dfeedback_data.cc27 FILE_PATH_LITERAL("histograms.txt");
29 const char kHistogramsAttachmentName[] = "histograms.zip";
72 scoped_ptr<std::string> histograms) {
75 if (!histograms.get())
84 base::Passed(&histograms)),
71 SetAndCompressHistograms( scoped_ptr<std::string> histograms) argument
/external/chromium_org/net/socket/
H A Dclient_socket_handle.cc152 ClientSocketPoolHistograms* histograms = pool_->histograms(); local
153 histograms->AddErrorCode(result);
165 histograms->AddSocketType(reuse_type());
168 histograms->AddRequestTime(setup_time());
171 histograms->AddUnusedIdleTime(idle_time());
174 histograms->AddReusedIdleTime(idle_time());
H A Dsocks_client_socket_pool.cc195 ClientSocketPoolHistograms* histograms,
200 base_(this, max_sockets, max_sockets_per_group, histograms,
288 ClientSocketPoolHistograms* SOCKSClientSocketPool::histograms() const { function in class:net::SOCKSClientSocketPool
289 return base_.histograms();
192 SOCKSClientSocketPool( int max_sockets, int max_sockets_per_group, ClientSocketPoolHistograms* histograms, HostResolver* host_resolver, TransportClientSocketPool* transport_pool, NetLog* net_log) argument
H A Dtransport_client_socket_pool.cc443 ClientSocketPoolHistograms* histograms,
447 : base_(NULL, max_sockets, max_sockets_per_group, histograms,
550 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const { function in class:net::TransportClientSocketPool
551 return base_.histograms();
440 TransportClientSocketPool( int max_sockets, int max_sockets_per_group, ClientSocketPoolHistograms* histograms, HostResolver* host_resolver, ClientSocketFactory* client_socket_factory, NetLog* net_log) argument
H A Dwebsocket_transport_client_socket_pool.cc231 ClientSocketPoolHistograms* histograms,
237 histograms,
242 histograms_(histograms),
458 ClientSocketPoolHistograms* WebSocketTransportClientSocketPool::histograms() function in class:net::WebSocketTransportClientSocketPool
228 WebSocketTransportClientSocketPool( int max_sockets, int max_sockets_per_group, ClientSocketPoolHistograms* histograms, HostResolver* host_resolver, ClientSocketFactory* client_socket_factory, NetLog* net_log) argument
H A Dclient_socket_pool_base.h707 ClientSocketPoolHistograms* histograms,
711 : histograms_(histograms),
828 ClientSocketPoolHistograms* histograms() const { function in class:net::ClientSocketPoolBase
703 ClientSocketPoolBase( HigherLayeredPool* self, int max_sockets, int max_sockets_per_group, ClientSocketPoolHistograms* histograms, base::TimeDelta unused_idle_socket_timeout, base::TimeDelta used_idle_socket_timeout, ConnectJobFactory* connect_job_factory) argument
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dhistogram.cc15 // Build per-context histograms of literals, commands and distance codes.
76 std::vector<HistogramLiteral>* histograms) {
86 (*histograms)[context].Add(ringbuffer[pos & mask]);
68 BuildLiteralHistogramsForBlockType( const std::vector<Command>& cmds, const BlockSplit& literal_split, const uint8_t* ringbuffer, size_t pos, size_t mask, int block_type, int context_mode, std::vector<HistogramLiteral>* histograms) argument
H A Dblock_splitter.cc237 std::vector<HistogramType>* histograms) {
239 histograms->clear();
240 histograms->resize(num_types);
242 (*histograms)[block_ids[i]].Add(data[i]);
249 std::vector<HistogramType> histograms; local
258 histograms.push_back(cur_histogram);
267 ClusterHistograms(histograms, 1, histograms.size(),
312 std::vector<HistogramType> histograms; local
318 &histograms);
235 BuildBlockHistograms(const DataType* data, const size_t length, uint8_t* block_ids, std::vector<HistogramType>* histograms) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_engine_unittest.cc240 base::HistogramTester histograms; local
246 histograms.ExpectTotalCount("InputMethod.CommitLength", 3);
247 histograms.ExpectBucketCount("InputMethod.CommitLength", 5, 1);
248 histograms.ExpectBucketCount("InputMethod.CommitLength", 2, 1);
249 histograms.ExpectBucketCount("InputMethod.CommitLength", 7, 1);
/external/chromium_org/chrome/browser/extensions/api/metrics_private/
H A Dmetrics_apitest.cc28 // histograms. If the tests in test.js are modified, this array may need to be
59 // We expect the following sparse histograms.
137 base::StatisticsRecorder::Histograms histograms; local
138 base::StatisticsRecorder::GetHistograms(&histograms);
147 for (j = 0; j < histograms.size(); ++j) {
148 base::HistogramBase* histogram(histograms[j]);
165 EXPECT_LT(j, histograms.size());
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dannotate.h95 * @histogram: Array of addr hit histograms per event being monitored
110 struct sym_hist histograms[0]; member in struct:annotated_source
125 return (((void *)&notes->src->histograms) +
/external/chromium_org/tools/imagediff/
H A Dimage_diff.cc36 // Causes the app to additionally calculate a diff of the color histograms
236 " RGBA value histograms (which is resistant to shifts in layout)\n"
410 bool histograms = parsed_command_line.HasSwitch(kOptionCompareHistograms); local
422 if (CompareImages(filename1, filename2, histograms) == kStatusError)
444 base::FilePath(args[0]), base::FilePath(args[1]), histograms);
/external/chromium_org/net/http/
H A Dhttp_proxy_client_socket_pool.cc428 ClientSocketPoolHistograms* histograms,
436 base_(this, max_sockets, max_sockets_per_group, histograms,
536 ClientSocketPoolHistograms* HttpProxyClientSocketPool::histograms() const { function in class:net::HttpProxyClientSocketPool
537 return base_.histograms();
425 HttpProxyClientSocketPool( int max_sockets, int max_sockets_per_group, ClientSocketPoolHistograms* histograms, HostResolver* host_resolver, TransportClientSocketPool* transport_pool, SSLClientSocketPool* ssl_pool, const ProxyDelegate* proxy_delegate, NetLog* net_log) argument
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
H A Dbg.js14 "about:histograms": "time-passing.mp3",

Completed in 2311 milliseconds

12