HomeSort by relevance Sort by last modified time
    Searched defs:histograms (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/chrome/browser/accessibility/
browser_accessibility_state_browsertest.cc 13 // histograms won't get updated.
18 UMAHistogramHelper histograms; local
21 histograms.Fetch();
22 histograms.ExpectTotalCount("Accessibility.State", 1);
24 histograms.ExpectTotalCount("Accessibility.WinScreenReader", 1);
26 histograms.ExpectTotalCount("Accessibility.CrosSpokenFeedback", 1);
  /external/chromium_org/chrome/test/nacl/
nacl_browsertest_uma.cc 17 // Make sure histograms from child processes have been accumulated in the
19 UMAHistogramHelper histograms;
20 histograms.Fetch();
23 histograms.ExpectUniqueSample("NaCl.LoadStatus.Plugin",
27 histograms.ExpectUniqueSample("NaCl.LoadStatus.SelLdr",
34 histograms.ExpectBucketCount("NaCl.ValidationCache.Query",
37 histograms.ExpectTotalCount("NaCl.ValidationCache.Query", 1);
39 histograms.ExpectTotalCount("NaCl.ValidationCache.Set", 1);
41 // Make sure we have other important histograms.
43 histograms.ExpectTotalCount("NaCl.Perf.StartupTime.LoadModule", 1)
88 UMAHistogramHelper histograms; local
    [all...]
  /external/chromium_org/base/test/
statistics_delta_reader.cc 19 StatisticsRecorder::Histograms histograms; local
20 StatisticsRecorder::GetSnapshot(std::string(), &histograms); local
21 for (size_t i = 0; i < histograms.size(); ++i) {
22 original_samples_[histograms[i]->histogram_name()] =
23 histograms[i]->SnapshotSamples().release();
  /external/chromium_org/base/metrics/
histogram_snapshot_manager.cc 31 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
histogram_snapshot_manager_unittest.cc 63 // 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...]
sparse_histogram_unittest.cc 71 StatisticsRecorder::Histograms histograms; local
72 StatisticsRecorder::GetHistograms(&histograms);
74 ASSERT_EQ(1U, histograms.size());
75 HistogramBase* sparse_histogram = histograms[0];
90 StatisticsRecorder::Histograms histograms; local
91 StatisticsRecorder::GetHistograms(&histograms);
93 ASSERT_EQ(1U, histograms.size());
94 HistogramBase* sparse_histogram = histograms[0]
109 StatisticsRecorder::Histograms histograms; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/profiles/
profile_chooser_view_browsertest.cc 89 UMAHistogramHelper histograms; local
99 histograms.Fetch();
100 histograms.ExpectUniqueSample("Profile.UpgradeEnrollment",
  /external/chromium_org/net/socket/
client_socket_handle.cc 152 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());
socks_client_socket_pool.cc 195 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();
transport_client_socket_pool.cc 418 ClientSocketPoolHistograms* histograms,
422 : base_(NULL, max_sockets, max_sockets_per_group, histograms,
519 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const { function in class:net::TransportClientSocketPool
520 return base_.histograms();
ssl_client_socket_pool.cc 507 ClientSocketPoolHistograms* histograms,
523 base_(this, max_sockets, max_sockets_per_group, histograms,
659 ClientSocketPoolHistograms* SSLClientSocketPool::histograms() const { function in class:net::SSLClientSocketPool
660 return base_.histograms();
client_socket_pool_base.h 707 ClientSocketPoolHistograms* histograms,
711 : histograms_(histograms),
828 ClientSocketPoolHistograms* histograms() const { function in class:net::ClientSocketPoolBase
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
histogram.h 12 // 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:__anon16896
81 // Allocate an array of pointer to histograms, allocated and initialized
histogram.c 105 + sizeof(*set->histograms) * size
112 set->histograms = (VP8LHistogram**)memory;
113 memory += size * sizeof(*set->histograms);
117 set->histograms[i] = (VP8LHistogram*)memory;
119 set->histograms[i]->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram));
120 VP8LHistogramInit(set->histograms[i], cache_bits);
121 // There's no padding/alignment between successive histograms.
423 // Construct the histograms from backward references.
429 VP8LHistogram** const histograms = image_histo->histograms; local
452 VP8LHistogram** const histograms = image_histo->histograms; local
466 VP8LHistogram** const histograms = image_histo->histograms; local
503 VP8LHistogram** const histograms = image_histo->histograms; local
530 VP8LHistogram** const histograms = image_histo->histograms; local
574 VP8LHistogram** const histograms = image_histo->histograms; local
642 VP8LHistogram** const histograms = image_histo->histograms; local
    [all...]
  /external/webp/src/enc/
histogram.h 12 // 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:__anon37065
81 // Allocate an array of pointer to histograms, allocated and initialized
histogram.c 105 + sizeof(*set->histograms) * size
112 set->histograms = (VP8LHistogram**)memory;
113 memory += size * sizeof(*set->histograms);
117 set->histograms[i] = (VP8LHistogram*)memory;
119 set->histograms[i]->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram));
120 VP8LHistogramInit(set->histograms[i], cache_bits);
121 // There's no padding/alignment between successive histograms.
423 // Construct the histograms from backward references.
429 VP8LHistogram** const histograms = image_histo->histograms; local
452 VP8LHistogram** const histograms = image_histo->histograms; local
466 VP8LHistogram** const histograms = image_histo->histograms; local
503 VP8LHistogram** const histograms = image_histo->histograms; local
530 VP8LHistogram** const histograms = image_histo->histograms; local
574 VP8LHistogram** const histograms = image_histo->histograms; local
642 VP8LHistogram** const histograms = image_histo->histograms; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/metrics_private/
metrics_apitest.cc 28 // 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/chromium_org/net/http/
http_proxy_client_socket_pool.cc 420 ClientSocketPoolHistograms* histograms,
427 base_(this, max_sockets, max_sockets_per_group, histograms,
526 ClientSocketPoolHistograms* HttpProxyClientSocketPool::histograms() const { function in class:net::HttpProxyClientSocketPool
527 return base_.histograms();
  /external/chromium_org/tools/imagediff/
image_diff.cc 36 // Causes the app to additionally calculate a diff of the color histograms
183 // "Comparing Images Using Joint Histograms" by Pass & Zabih
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/linux-tools-perf/perf-3.12.0/tools/perf/util/
annotate.h 95 * @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/third_party/brotli/src/brotli/enc/
block_splitter.cc 237 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);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
bg.js 14 "about:histograms": "time-passing.mp3",
  /external/chromium_org/chrome/browser/prerender/
prerender_browsertest.cc 1665 UMAHistogramHelper histograms; local
1692 UMAHistogramHelper histograms; local
2085 UMAHistogramHelper histograms; local
3350 UMAHistogramHelper histograms; local
3375 UMAHistogramHelper histograms; local
3799 UMAHistogramHelper histograms; local
4180 UMAHistogramHelper histograms; local
    [all...]

Completed in 994 milliseconds