Home | History | Annotate | Download | only in gn

Lines Matching refs:Coalesced

47 struct Coalesced {
48 Coalesced() : name_ptr(NULL), total_duration(0.0), count(0) {}
59 bool CoalescedDurationGreater(const Coalesced& a, const Coalesced& b) {
79 std::map<std::string, Coalesced> coalesced;
81 Coalesced& c = coalesced[items[i]->name()];
88 std::vector<Coalesced> sorted;
89 for (std::map<std::string, Coalesced>::iterator iter = coalesced.begin();
90 iter != coalesced.end(); ++iter)