HomeSort by relevance Sort by last modified time
    Searched defs:Metric (Results 1 - 15 of 15) 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
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)."""
loading.py 5 from metrics import Metric
8 class LoadingMetric(Metric):
9 """A metric for page loading time based entirely on window.performance"""
cpu.py 5 from metrics import Metric
9 class CpuMetric(Metric):
29 # Optional argument trace_name is not in base class Metric.
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...]
iometric.py 7 from metrics import Metric
11 class IOMetric(Metric):
28 # This metric currently only returns summary results, not per-page results.
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)
memory.py 7 from metrics import Metric
52 class MemoryMetric(Metric):
84 """Start the per-page preparation for this metric.
112 # Optional argument trace_name is not in base class Metric.
154 metric_trace_name: Trace to identify the metric results per test page.
158 metric = 'resident_set_size'
160 metric = 'working_set'
200 AddResult('WorkingSetSize', 'vm_%s_%s_size' % (metric, chart_trace_name),
213 'The Proportional Set Size (PSS) number is a metric the kernel '
226 AddResult('WorkingSetSizePeak', '%s_peak_size' % metric,
    [all...]
power.py 7 from metrics import Metric
12 class PowerMetric(Metric):
13 """A metric for measuring power usage."""
startup_metric.py 8 from metrics import Metric
15 class StartupMetric(Metric):
16 "A metric for browser startup time."
v8_object_stats.py 8 from metrics import Metric
171 class V8ObjectStatsMetric(Metric):
speedindex.py 7 from metrics import Metric
12 class SpeedIndexMetric(Metric):
13 """The speed index metric is one way of measuring page load speed.
20 This speed index metric is based on WebPageTest.org (WPT).
48 # Optional argument chart_name is not in base class Metric.
62 are used in the speed index metric calculation. In general, the recording
67 should be placed in any measurement that uses this metric, e.g.:
  /external/lldb/tools/lldb-perf/lib/
Metric.h 1 //===-- Metric.h ------------------------------------------------*- C++ -*-===//
22 class Metric
31 Metric ();
32 Metric (const char*, const char* = NULL);
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...]
  /external/chromium_org/tools/chrome_proxy/integration_tests/
network_metrics.py 12 from metrics import Metric
121 class NetworkMetric(Metric):
122 """A network metric based on timeline events."""
  /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(

Completed in 1853 milliseconds