HomeSort by relevance Sort by last modified time
    Searched refs:StatsCounterTimer (Results 1 - 6 of 6) sorted by null

  /external/chromium/base/metrics/
stats_counters.cc 66 StatsCounterTimer::StatsCounterTimer(const std::string& name) {
76 StatsCounterTimer::~StatsCounterTimer() {
79 void StatsCounterTimer::Start() {
87 void StatsCounterTimer::Stop() {
95 bool StatsCounterTimer::Running() {
100 void StatsCounterTimer::AddTime(TimeDelta time) {
104 void StatsCounterTimer::Record() {
110 : StatsCounterTimer(name)
    [all...]
stats_counters.h 129 // A StatsCounterTimer is a StatsCounter which keeps a timer during
130 // the scope of the StatsCounterTimer. On destruction, it will record
132 class BASE_API StatsCounterTimer : protected StatsCounter {
135 explicit StatsCounterTimer(const std::string& name);
136 virtual ~StatsCounterTimer();
161 class BASE_API StatsRate : public StatsCounterTimer {
stats_table_unittest.cc 293 class MockStatsCounterTimer : public StatsCounterTimer {
296 : StatsCounterTimer(name) {}
302 // Test some basic StatsCounterTimer operations
303 TEST_F(StatsTableTest, StatsCounterTimer) {
378 StatsCounterTimer foo("foo");
390 StatsScope<StatsCounterTimer> timer(foo);
400 StatsScope<StatsCounterTimer> timer(foo);
  /external/v8/src/
counters.cc 49 void StatsCounterTimer::Start() {
57 void StatsCounterTimer::Stop() {
counters.h 183 // StatsCounterTimer t = { { L"t:foo", NULL, false }, 0, 0 };
184 struct StatsCounterTimer {
  /external/chromium/net/tools/fetch/
fetch_client.cc 170 base::StatsCounterTimer driver_time("FetchClient.total_time");
171 base::StatsScope<base::StatsCounterTimer> scope(driver_time);

Completed in 94 milliseconds