Home | History | Annotate | Download | only in src

Lines Matching defs:Entry

207     for (Entry& entry : entries) {
208 entry.SetTotal(total_time, total_call_count);
209 entry.Print(os);
212 Entry("Total", total_time, total_call_count).Print(os);
217 entries.push_back(Entry(counter->name, counter->time, counter->count));
223 class Entry {
225 Entry(const char* name, base::TimeDelta time, uint64_t count)
232 bool operator<(const Entry& other) const {
268 std::vector<Entry> entries;