Searched refs:TimersToPrint (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DTimer.cpp282 // If the timer was started, move its data to TimersToPrint.
284 TimersToPrint.push_back(std::make_pair(T.Time, T.Name));
295 if (FirstTimer != 0 || TimersToPrint.empty())
316 std::sort(TimersToPrint.begin(), TimersToPrint.end());
319 for (unsigned i = 0, e = TimersToPrint.size(); i != e; ++i)
320 Total += TimersToPrint[i].first;
350 for (unsigned i = 0, e = TimersToPrint.size(); i != e; ++i) {
351 const std::pair<TimeRecord, std::string> &Entry = TimersToPrint[e-i-1];
360 TimersToPrint
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DTimer.h169 std::vector<std::pair<TimeRecord, std::string> > TimersToPrint; member in class:llvm::TimerGroup

Completed in 86 milliseconds