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

  /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
15 """Start collecting data for this metric."""
19 """Stop collecting data for this metric (if applicable)."""
loading.py 5 from metrics import Metric
7 class LoadingMetric(Metric):
8 """A metric for page loading time based entirely on window.performance"""
media.py 7 from metrics import Metric
9 class MediaMetric(Metric):
49 def AddOneResult(metric, unit):
52 if m.startswith(metric):
53 special_label = m[len(metric):]
55 chart_name=metric, data_type='default')
memory.py 6 from metrics import Metric
8 class MemoryMetric(Metric):
32 metric = 'resident_set_size'
34 metric = 'working_set'
62 AddSummary('WorkingSetSize', 'vm_%s_final_size_' % metric)
66 AddSummary('WorkingSetSizePeak', '%s_peak_size_' % metric)
  /external/chromium_org/chrome_frame/crash_reporting/
crash_metrics.h 20 enum Metric {
35 int GetMetric(Metric metric);
36 bool SetMetric(Metric metric, int value);
37 int IncrementMetric(Metric metric);
  /external/chromium_org/chrome/browser/performance_monitor/
metric.cc 5 #include "chrome/browser/performance_monitor/metric.h"
26 // metric is valid if it is greater than or equal to the minimum and less than
29 const double kMaxUndefined = 0.0; // No undefined metric is valid.
69 Metric::Metric() : type(METRIC_UNDEFINED), value(0.0) {
72 Metric::Metric(MetricType metric_type,
78 Metric::Metric(MetricType metric_type,
87 Metric::~Metric()
    [all...]
metric.h 14 // - Place the new metric above METRIC_NUMBER_OF_METRICS.
42 struct Metric {
44 Metric();
45 Metric(MetricType metric_type,
48 Metric(MetricType metric_type,
51 ~Metric();
53 // Check the value in the metric to make sure that it is reasonable. Since
54 // some metric-gathering methods will fail and return incorrect values, we
59 // not perform any checking on the validity of the metric, and only makes
60 // sense if the metric IsValid()
    [all...]
  /external/ceres-solver/internal/ceres/
autodiff_test.cc 236 struct Metric {
280 TEST(AutoDiff, Metric) {
286 Metric b;
305 ASSERT_TRUE((SymmetricDiff<Metric, double, 2, 4 + 3 + 3>(b, qcX, del,
319 ASSERT_TRUE((AutoDiff<Metric, double, 4, 3, 3>::Differentiate(
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 5731 milliseconds