Searched refs:SortedTotals (Results 1 – 2 of 2) sorted by relevance
135 std::vector<NameAndCountAndDurationType> SortedTotals; in Write() local136 SortedTotals.reserve(CountAndTotalPerName.size()); in Write()138 SortedTotals.emplace_back(E.getKey(), E.getValue()); in Write()140 llvm::sort(SortedTotals.begin(), SortedTotals.end(), in Write()145 for (const auto &E : SortedTotals) { in Write()
185 std::vector<NameAndCountAndDurationType> SortedTotals; in write() local186 SortedTotals.reserve(AllCountAndTotalPerName.size()); in write()188 SortedTotals.emplace_back(std::string(Total.getKey()), Total.getValue()); in write()190 llvm::sort(SortedTotals, [](const NameAndCountAndDurationType &A, in write()197 for (const NameAndCountAndDurationType &Total : SortedTotals) { in write()