Home | History | Annotate | Download | only in tools

Lines Matching defs:counters

229     this.counters = {};
235 if (!(func in this.counters)) {
236 this.counters[func] = { self: 0, total: 0 };
238 this.counters[func].self += self;
239 this.counters[func].total += total;
273 assertTrue('' in this.counters);
274 this.root = this.counters[''];
275 delete this.counters[''];
283 for (var c in testDriver.counters) {
295 assertTrue(rec.label in testDriver.counters, 'uncounted: ' + rec.label);
296 var reference = testDriver.counters[rec.label];