Lines Matching refs:coalesced
49 struct Coalesced {
50 Coalesced() : name_ptr(NULL), total_duration(0.0), count(0) {}
61 bool CoalescedDurationGreater(const Coalesced& a, const Coalesced& b) {
81 std::map<std::string, Coalesced> coalesced;
83 Coalesced& c = coalesced[items[i]->name()];
90 std::vector<Coalesced> sorted;
91 for (std::map<std::string, Coalesced>::iterator iter = coalesced.begin();
92 iter != coalesced.end(); ++iter)