/external/lldb/tools/lldb-perf/lib/ |
Metric.cpp | 1 //===-- Metric.cpp ----------------------------------------------*- C++ -*-===// 10 #include "Metric.h" 17 Metric<T>::Metric () : Metric ("") 22 Metric<T>::Metric (const char* n, const char* d) : 31 Metric<T>::Append (T v) 38 Metric<T>::GetCount () const 45 Metric<T>::GetSum () cons [all...] |
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/browser/profiles/ |
profile_metrics.cc | 28 ProfileMetrics::ProfileType metric = ProfileMetrics::SECONDARY; local 36 metric = ProfileMetrics::ORIGINAL; 38 return metric; 187 void ProfileMetrics::LogProfileAddNewUser(ProfileAdd metric) { 188 DCHECK(metric < NUM_PROFILE_ADD_METRICS); 189 UMA_HISTOGRAM_ENUMERATION("Profile.AddNewUser", metric, 291 void ProfileMetrics::LogProfileDeleteUser(ProfileDelete metric) { 292 DCHECK(metric < NUM_DELETE_PROFILE_METRICS); 293 UMA_HISTOGRAM_ENUMERATION("Profile.DeleteProfileAction", metric, 299 void ProfileMetrics::LogProfileOpenMethod(ProfileOpen metric) { [all...] |
/external/chromium_org/tools/metrics/rappor/ |
rappor.xml | 18 <!-- Rappor metric definitions --> 22 <rappor-metric name="Extensions.PossibleAdInjection2" type="ETLD_PLUS_ONE"> 27 </rappor-metric> 29 <rappor-metric name="Search.DefaultSearchProvider" type="ETLD_PLUS_ONE"> 35 </rappor-metric> 37 <rappor-metric name="Settings.FirstStartupPage" type="ETLD_PLUS_ONE"> 44 </rappor-metric> 46 <rappor-metric name="Settings.HomePage2" type="ETLD_PLUS_ONE"> 52 </rappor-metric> 54 <rappor-metric name="Settings.NewTabPage" type="ETLD_PLUS_ONE" [all...] |
/external/dhcpcd/dhcpcd-hooks/ |
01-test | 4 set | grep "^\(interface\|metric\|pid\|reason\|skip_hooks\)=" | sort
|
/external/chromium_org/tools/chrome_proxy/integration_tests/ |
chrome_proxy_metrics_unittest.py | 115 metric = metrics.ChromeProxyMetric() 121 metric.SetEvents(events) 123 self.assertTrue(len(events), len(list(metric.IterResponses(None)))) 126 metric.AddResultsForDataSaving(None, results) 132 metric = metrics.ChromeProxyMetric() 133 metric.SetEvents([ 143 metric.AddResultsForHeaderValidation(None, results) 150 metric.SetEvents([ 153 metric.AddResultsForHeaderValidation(None, results) 157 metric = metrics.ChromeProxyMetric( [all...] |
/external/chromium_org/tools/perf/metrics/ |
__init__.py | 5 class Metric(object): 8 The Metric class represents a way of measuring something. Metrics are 10 multiple metrics; each metric should be focussed on collecting data 16 """Add browser options that are required by this metric. 27 """Start collecting data for this metric.""" 31 """Stop collecting data for this metric (if applicable)."""
|
system_memory.py | 6 from metrics import Metric 10 class SystemMemoryMetric(Metric): 13 This metric collects system memory stats per test. It reports the difference 24 """Start the per-page preparation for this metric. 39 # |trace_name| and |exclude_metrics| args are not in base class Metric. 80 {'Browser': {metric: value, ...}, 81 'Renderer': {metric: value, ...}, 82 'Gpu': {metric: value, ...}, 117 for metric in end_process_memory: 118 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...] |
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...] |
media.py | 7 from metrics import Metric 12 class MediaMetric(Metric): 58 def AddOneResult(metric, unit): 61 if m.startswith(metric): 62 special_label = m[len(metric):] 63 trace_name = '%s.%s%s' % (metric, trace, special_label)
|
/external/chromium_org/tools/metrics/actions/ |
actions.xml | 25 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 30 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 35 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 40 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 45 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 50 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 55 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 60 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 65 <owner>Please list the metric's owners. Add more owner tags as needed.</owner> 70 <owner>Please list the metric's owners. Add more owner tags as needed.</owner [all...] |
/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); 156 // Interpolate the |metric| with the |group|, so that all metrics for a given 158 return (group * num_possible_metrics) + metric; 162 AutofillMetrics::WalletApiCallMetric metric) { 163 switch (metric) { 232 // Logs a type quality metric. The primary histogram name is constructed based 234 // |field_type|. Logs a sample of |metric|, which should be in the rang [all...] |
/external/chromium_org/tools/auto_bisect/ |
bisect.cfg | 9 below and add the revision range, performance command, and metric. You can then 16 'good_revision': An svn or git revision where the metric hadn't regressed yet. 17 'bad_revision': An svn or git revision sometime after the metric regressed. 18 'metric': The name of the metric to parse out from the results of the 19 performance test. You can retrieve the metric by looking at the stdio of 22 The metric name is "<graph>/<trace>". 33 'metric': 'Total/Total', 57 'metric': 'jslib/jslib', 65 'metric': '' [all...] |
/external/chromium_org/third_party/WebKit/Tools/ |
run-perf-test.cfg | 9 the metric you're interested in, and repeat/discard parameters. You can then 17 'metric': The name of the metric to parse out from the results of the 18 performance test. You can retrieve the metric by looking at the stdio of 23 The metric name is "<graph>/<trace>". 34 'metric': 'times/t', 46 'metric': 'Total/Total', 62 'metric': 'jslib/jslib', 72 'metric': '',
|
/external/chromium_org/tools/ |
run-perf-test.cfg | 9 the metric you're interested in, and repeat/discard parameters. You can then 17 'metric': The name of the metric to parse out from the results of the 18 performance test. You can retrieve the metric by looking at the stdio of 23 The metric name is "<graph>/<trace>". 33 'metric': 'floats_50_100/floats_50_100', 45 'metric': 'Total/Total', 61 'metric': 'jslib/jslib', 71 'metric': '',
|
/external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/ |
smoothness_unittest.py | 32 self.metric = smoothness.SmoothnessMetric() 45 self.metric._PopulateResultsFromStats(results, stats) 52 has_enough_frames = self.metric._HasEnoughFrames(self.good_timestamps) 57 has_enough_frames = self.metric._HasEnoughFrames( 64 mean_value, discrepancy_value = self.metric._ComputeLatencyMetric( 72 value = self.metric._ComputeLatencyMetric( 80 mean_value, discrepancy_value = self.metric._ComputeLatencyMetric( 93 gesture_value = self.metric._ComputeFirstGestureScrollUpdateLatency( 101 value = self.metric._ComputeFirstGestureScrollUpdateLatency( 109 gesture_value = self.metric._ComputeFirstGestureScrollUpdateLatency [all...] |
/external/chromium_org/chrome/browser/resources/options/ |
preferences.js | 45 * @param {string} metric User metrics identifier. 47 Preferences.setIntegerPref = function(name, value, commit, metric) { 54 if (metric != undefined) argumentList.push(metric); 63 * @param {string} metric User metrics identifier. 65 Preferences.setDoublePref = function(name, value, commit, metric) { 72 if (metric != undefined) argumentList.push(metric); 81 * @param {string} metric User metrics identifier. 83 Preferences.setStringPref = function(name, value, commit, metric) { [all...] |
/external/tcpdump/tests/ |
ripv1v2.out | 4 AFI 0, 0.0.0.0, metric: 16 8 10.70.178.0, metric: 1 12 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self 16 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
|
/external/chromium_org/chrome/browser/chromeos/first_run/ |
step_names.cc | 11 // Also there are metric recording how much time user spent on every step. 12 // Metric's name has format "CrosFirstRun.TimeSpentOnStep[StepName]", where
|
/external/chromium_org/chrome/browser/metrics/rappor/ |
sampling.cc | 24 void SampleDomainAndRegistryFromGURL(const std::string& metric, 29 metric,
|
sampling.h | 19 // Records the domain and registry of a url to a Rappor metric. 21 void SampleDomainAndRegistryFromGURL(const std::string& metric,
|
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
accounts_options.html | 16 metric="Options_GuestBrowsing" 28 metric="Options_SupervisedUsers" 40 metric="Options_ShowUserNamesOnSignin" 52 metric="Options_AllowAllUsers"
|
pointer_overlay.html | 8 <input type="checkbox" metric="Options_TouchpadTapToClick" 16 metric="Options_TouchpadNaturalScroll" 24 metric="Options_TouchpadNaturalScroll" 34 <input type="checkbox" metric="Options_MousePrimaryRight"
|
/external/chromium_org/components/metrics/ |
metrics_hashes.h | 15 // metric names.
|