Home
last modified time | relevance | path

Searched refs:stat_type (Results 1 – 5 of 5) sorted by relevance

/external/chromium-trace/catapult/dashboard/dashboard/
Dstats.py41 stat_type = ndb.StringProperty() variable in StatContainer
84 stat_type = None
88 stat_type = container.stat_type
89 if stat_type == 'around_revision':
91 elif stat_type == 'alert_summary':
98 'type': stat_type,
132 if container.stat_type == 'around_revision':
138 if container.stat_type == 'alert_summary':
231 stat_type = self.request.get('type')
232 stat_container = StatContainer(stat_type=stat_type)
[all …]
Dstats_test.py217 self.assertEqual('alert_summary', containers[0].stat_type)
287 self.assertEqual('around_revision', containers[0].stat_type)
381 self.assertEqual('around_revision', containers[0].stat_type)
/external/skia/bench/
Dbench_compare.py70 stat_type = "avg"
84 stat_type = value
97 old_benches = bench_util.parse({}, open(old, 'r'), stat_type)
98 new_benches = bench_util.parse({}, open(new, 'r'), stat_type)
/external/compiler-rt/lib/tsan/rtl/
Dtsan_mutex.h44 explicit Mutex(MutexType type, StatType stat_type);
Dtsan_mutex.cc210 Mutex::Mutex(MutexType type, StatType stat_type) { in Mutex() argument
217 stat_type_ = stat_type; in Mutex()