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

1 2 3 4 5

  /external/chromium_org/components/autofill/core/browser/
autofill_metrics.cc 42 // |FieldTypeGroupForMetrics|. Then, interpolates this with the given |metric|,
46 // The interpolation maps the pair (|group|, |metric|) to a single index, so
63 const int metric,
65 DCHECK_LT(metric, num_possible_metrics);
152 // Interpolate the |metric| with the |group|, so that all metrics for a given
154 return (group * num_possible_metrics) + metric;
158 AutofillMetrics::WalletApiCallMetric metric) {
159 switch (metric) {
228 // Logs a type quality metric. The primary histogram name is constructed based
230 // |field_type|. Logs a sample of |metric|, which should be in the rang
    [all...]
autofill_metrics.h 98 // Baseline metric: The dialog was shown.
110 // Baseline metric: The dialog was shown.
250 // Baseline metric: Issued a request to the Wallet server.
294 // Baseline metric: Issued a request to the Wallet server.
314 virtual void LogCreditCardInfoBarMetric(InfoBarMetric metric) const;
317 DeveloperEngagementMetric metric) const;
319 virtual void LogHeuristicTypePrediction(FieldTypeQualityMetric metric,
321 virtual void LogOverallTypePrediction(FieldTypeQualityMetric metric,
323 virtual void LogServerTypePrediction(FieldTypeQualityMetric metric,
326 virtual void LogServerQueryMetric(ServerQueryMetric metric) const
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_ui_util.cc 10 #include "chrome/browser/performance_monitor/metric.h"
46 Database::MetricVector::const_iterator metric = metrics->begin(); local
47 while (metric != metrics->end() && metric->time < start)
48 ++metric;
50 // For each interval, advance the metric to the start of the interval, and
51 // append a metric vector for the aggregated data within that interval,
55 while (metric != metrics->end() && metric->time < interval->start)
56 ++metric;
    [all...]
performance_monitor_ui_util.h 25 // Aggregate a full metric vector into a vector of metric vectors, with each
26 // metric vector representing the aggregation for an active interval. |start|
40 // Aggregate only a single interval, advancing the |metric| iterator to the
41 // end of the active interval (or the end of the vector). |metric| points to
48 Database::MetricVector::const_iterator* metric,
60 Database::MetricVector::const_iterator* metric,
71 Database::MetricVector::const_iterator* metric,
82 Database::MetricVector::const_iterator* metric,
94 // Metric data can be either dense or sporadic, so AggregateMetric() normalize
    [all...]
  /external/chromium_org/chrome/browser/metrics/rappor/
sampling.h 19 // Records the domain and registry of a url to a Rappor metric.
21 void SampleDomainAndRegistryFromGURL(const std::string& metric,
24 // Records the domain and registry of a host to a Rappor metric.
26 void SampleDomainAndRegistryFromHost(const std::string& metric,
sampling.cc 24 void SampleDomainAndRegistryFromGURL(const std::string& metric,
29 metric,
34 void SampleDomainAndRegistryFromHost(const std::string& metric,
39 metric,
  /external/chromium_org/chrome/browser/profiles/
profile_metrics.h 150 static void LogProfileAddNewUser(ProfileAdd metric);
152 static void LogProfileDeleteUser(ProfileNetUserCounts metric);
153 static void LogProfileOpenMethod(ProfileOpen metric);
154 static void LogProfileSwitchGaia(ProfileGaia metric);
155 static void LogProfileSwitchUser(ProfileOpen metric);
156 static void LogProfileSyncInfo(ProfileSync metric);
157 static void LogProfileAuthResult(ProfileAuth metric);
158 static void LogProfileUpgradeEnrollment(ProfileUpgradeEnrollment metric);
159 static void LogProfileDesktopMenu(ProfileDesktopMenu metric,
165 ProfileAndroidAccountManagementMenu metric,
    [all...]
profile_metrics.cc 39 ProfileMetrics::ProfileType metric = ProfileMetrics::SECONDARY; local
47 metric = ProfileMetrics::ORIGINAL;
49 return metric;
184 void ProfileMetrics::LogProfileAddNewUser(ProfileAdd metric) {
185 DCHECK(metric < NUM_PROFILE_ADD_METRICS);
186 UMA_HISTOGRAM_ENUMERATION("Profile.AddNewUser", metric,
288 void ProfileMetrics::LogProfileDeleteUser(ProfileNetUserCounts metric) {
289 DCHECK(metric < NUM_PROFILE_NET_METRICS);
290 UMA_HISTOGRAM_ENUMERATION("Profile.NetUserCount", metric,
294 void ProfileMetrics::LogProfileOpenMethod(ProfileOpen metric) {
    [all...]
  /external/chromium_org/components/rappor/
rappor_metric_unittest.cc 42 RapporMetric metric("MyRappor", kTestRapporParameters, 0);
44 const ByteVector report = metric.GetReport(
50 RapporMetric metric("MyStatsRappor", kTestStatsRapporParameters, 0);
53 metric.AddSample(base::StringPrintf("%d", i));
55 const ByteVector real_bits = metric.bytes();
60 const ByteVector report = metric.GetReport(secret);
rappor_service.cc 145 const RapporMetric* metric = it->second; local
148 ByteVector bytes = metric->GetReport(secret_);
173 RapporMetric* metric = LookUpMetric(metric_name, parameters); local
174 metric->AddSample(sample);
183 RapporMetric* metric = it->second; local
184 DCHECK_EQ(parameters.ToString(), metric->parameters().ToString());
185 return metric;
  /external/chromium_org/tools/perf/metrics/
chrome_proxy_unittest.py 115 metric = chrome_proxy.ChromeProxyMetric()
121 metric.SetEvents(events)
123 self.assertTrue(len(events), len(list(metric.IterResponses(None))))
126 metric.AddResultsForDataSaving(None, results)
132 metric = chrome_proxy.ChromeProxyMetric()
133 metric.SetEvents([
143 metric.AddResultsForHeaderValidation(None, results)
150 metric.SetEvents([
153 metric.AddResultsForHeaderValidation(None, results)
157 metric = chrome_proxy.ChromeProxyMetric(
    [all...]
timeline_unittest.py 17 def GetResults(self, metric, model, renderer_thread, interaction_records):
19 metric.AddResults(model, renderer_thread, interaction_records, results)
33 metric = timeline.LoadTimesTimelineMetric()
35 metric, model=model, renderer_thread=renderer_main,
58 metric = timeline.LoadTimesTimelineMetric()
60 metric, model=model, renderer_thread=renderer_main,
81 metric = timeline.LoadTimesTimelineMetric()
83 metric, model=model, renderer_thread=renderer_main,
92 def GetResults(self, metric, model, renderer_thread, interaction_record):
94 metric.AddResults(model, renderer_thread, interaction_record
    [all...]
system_memory.py 6 from metrics import Metric
8 class SystemMemoryMetric(Metric):
11 This metric collects system memory stats per test. It reports the difference
22 """Start the per-page preparation for this metric.
37 # |trace_name| and |exclude_metrics| args are not in base class Metric.
78 {'Browser': {metric: value, ...},
79 'Renderer': {metric: value, ...},
80 'Gpu': {metric: value, ...},
115 for metric in end_process_memory:
116 end_value = end_process_memory[metric]
    [all...]
media.js 32 var metric = this;
35 if (metric.playbackTimer == undefined)
36 metric.playbackTimer = new Timer();
43 metric.onPlaying(e);
46 metric.onEnded(e);
52 metric.onWillPlay(e);
55 metric.onWillSeek(e);
58 metric.onWillLoop(e);
82 var metric = this;
84 metric.appendMetric('seek' + seekLabel, metric.seekTimer.stop()
    [all...]
  /external/lldb/tools/lldb-perf/lib/
Measurement.h 15 #include "Metric.h"
34 m_metric (Metric<typename GaugeType::ValueType>(name, desc))
41 m_metric (Metric<typename GaugeType::ValueType>(name, desc))
74 virtual const Metric<typename GaugeType::ValueType>&
97 auto metric = GetMetric (); local
98 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStartValue()));
104 auto metric = GetMetric (); local
105 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, met (…)
111 auto metric = GetMetric (); local
118 auto metric = GetMetric (); local
129 auto metric = GetMetric (); local
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
AccountManagementScreenHelper.java 75 * Log a UMA event for a given metric and a signin type.
76 * @param metric A PROFILE_ANDROID_ACCOUNT_MANAGEMENT_MENU metric.
79 public static void logEvent(int metric, int gaiaServiceType) {
80 nativeLogEvent(metric, gaiaServiceType);
84 private static native void nativeLogEvent(int metric, int gaiaServiceType);
  /external/chromium_org/chrome/browser/android/signin/
account_management_screen_helper.cc 30 jint metric,
33 static_cast<ProfileMetrics::ProfileAndroidAccountManagementMenu>(metric),
  /external/chromium_org/components/signin/core/browser/
signin_metrics.cc 62 void LogSignout(ProfileSignout metric) {
63 UMA_HISTOGRAM_ENUMERATION("Signin.SignoutProfile", metric,
signin_metrics.h 74 void LogSignout(ProfileSignout metric);
  /external/dhcpcd/
if-pref.c 67 /* Finally, metric */
68 if (si->metric < ti->metric)
70 if (si->metric > ti->metric)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftest_unittest.py 67 metric = PerfTestMetric('Time')
69 self.assertFalse(metric.has_values())
72 metric.append_group([1])
73 self.assertTrue(metric.has_values())
75 self.assertEqual(metric.grouped_iteration_values(), [[1]])
76 self.assertEqual(metric.flattened_iteration_values(), [1])
78 metric.append_group([2])
79 self.assertEqual(metric.grouped_iteration_values(), [[1], [2]])
80 self.assertEqual(metric.flattened_iteration_values(), [1, 2])
84 self.assertEqual(metric.flattened_iteration_values(), [1, 2]
    [all...]
  /external/chromium_org/tools/perf/measurements/
thread_times.py 40 metric = timeline.ThreadTimesTimelineMetric()
44 metric.results_to_report = timeline.ReportSilkResults
46 metric.details_to_report = timeline.ReportSilkDetails
47 metric.AddResults(self._timeline_controller.model, renderer_thread,
  /external/chromium_org/chrome/browser/resources/performance_monitor/
chart.js 136 * Detailed information on a metric in the UI. |metricId| is a unique
137 * identifying number for the metric, provided by the webui, and assumed to
139 * suitable for mouseover on the metric. |category| corresponds to a
140 * category object to which the metric belongs (see |metricCategoryMap_|).
141 * |color| is the color in which the metric is displayed on the graphs.
144 * for the checkbox which toggles the metric's display. |enabled| indicates
145 * whether or not the metric is being actively displayed. |data| is the
146 * collection of data for the metric.
193 * of any metric which should be shown on the chart (whether the metric i
    [all...]
  /external/tcpdump/
print-igrp.c 48 u_int metric, mtu; local
62 metric = bandwidth + delay;
63 if (metric > 0xffffff)
64 metric = 0xffffff;
69 igr->igr_rel, igr->igr_ld, metric,
print-dvmrp.c 173 register int metric, done; local
212 metric = *bp++;
213 done = metric & 0x80;
214 metric &= 0x7f;
215 printf("\n\t %s metric %d", intoa(htonl(origin)),
216 metric);
263 register u_char metric; local
271 metric = *bp++;
279 ipaddr_string(bp), metric, thresh);
294 register u_char metric, thresh, flags local
    [all...]

Completed in 407 milliseconds

1 2 3 4 5