Searched refs:metric_name (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/components/rappor/
H A Drappor_service.h55 // Records a sample of the rappor metric specified by |metric_name|.
57 void RecordSample(const std::string& metric_name,
89 void RecordSampleInternal(const std::string& metric_name,
103 RapporMetric* LookUpMetric(const std::string& metric_name,
H A Drappor_metric.h28 // Takes the |metric_name| that this will be reported to the server with,
32 RapporMetric(const std::string& metric_name,
H A Drappor_service.cc199 void RapporService::RecordSample(const std::string& metric_name, argument
207 << "\" for metric \"" << metric_name
209 RecordSampleInternal(metric_name, kRapporParametersForType[type], sample);
212 void RapporService::RecordSampleInternal(const std::string& metric_name, argument
216 RapporMetric* metric = LookUpMetric(metric_name, parameters);
220 RapporMetric* RapporService::LookUpMetric(const std::string& metric_name, argument
224 metrics_map_.find(metric_name);
231 RapporMetric* new_metric = new RapporMetric(metric_name, parameters, cohort_);
232 metrics_map_[metric_name] = new_metric;
H A Drappor_metric.cc12 RapporMetric::RapporMetric(const std::string& metric_name, argument
15 : metric_name_(metric_name),
H A Drappor_service_unittest.cc34 void TestRecordSample(const std::string& metric_name, argument
37 RecordSampleInternal(metric_name, parameters, sample);
/external/chromium_org/chrome/browser/extensions/api/metrics_private/
H A Dmetrics_private_api.cc124 return RecordValue(params->metric.metric_name, histogram_type,
135 UMA_HISTOGRAM_SPARSE_SLOWLY(params->metric_name, params->value);
143 return RecordValue(params->metric_name, base::LINEAR_HISTOGRAM,
150 return RecordValue(params->metric_name, base::HISTOGRAM,
158 return RecordValue(params->metric_name, base::HISTOGRAM,
166 return RecordValue(params->metric_name, base::HISTOGRAM,
174 return RecordValue(params->metric_name, base::HISTOGRAM,
183 return RecordValue(params->metric_name, base::HISTOGRAM,
192 return RecordValue(params->metric_name, base::HISTOGRAM,
/external/chromium_org/tools/telemetry/telemetry/results/
H A Dhtml_output_formatter.py93 metric_name = measurement
95 metric_name += '.' + trace
98 self._result['tests'][self._test_name]['metrics'][metric_name] = {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
H A Dperftest.py130 for metric_name in self._ordered_metrics_name:
131 metric = self._metrics[metric_name]
200 def _ensure_metrics(self, metric_name, unit=None):
201 if metric_name not in self._metrics:
202 self._metrics[metric_name] = PerfTestMetric(metric_name, unit)
203 self._ordered_metrics_name.append(metric_name)
204 return self._metrics[metric_name]
H A Dperftestsrunner.py284 for metric_name, iteration_values in metrics.iteritems():
297 assert metric_name not in current_test['metrics']
298 current_test['metrics'][metric_name] = {'current': iteration_values}
/external/chromium_org/components/metrics/serialization/
H A Dmetric_sample.h101 const std::string& metric_name,
H A Dmetric_sample.cc18 const std::string& metric_name,
24 name_(metric_name),
17 MetricSample(MetricSample::SampleType sample_type, const std::string& metric_name, int sample, int min, int max, int bucket_count) argument
/external/valgrind/main/exp-dhat/
H A Ddh_main.c1034 const HChar* metric_name );
1187 const HChar* metric_name )
1189 if (0 == VG_(strcmp)(metric_name, "max-bytes-live")) {
1194 if (0 == VG_(strcmp)(metric_name, "tot-bytes-allocd")) {
1199 if (0 == VG_(strcmp)(metric_name, "max-blocks-live")) {
1215 const HChar* metric_name = clo_sort_by; local
1216 tl_assert(metric_name); // ensured by clo processing
1218 Bool ok = identify_metric( &get_metric, &increasing, metric_name );
1225 metric_name, clo_show_top_n );
/external/llvm/utils/lit/lit/
H A Dmain.py69 for metric_name, value in items:
70 print('%s: %s ' % (metric_name, value.format()))

Completed in 4477 milliseconds