HomeSort by relevance Sort by last modified time
    Searched refs:TimersToPrint (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
Timer.cpp 273 // If the timer was started, move its data to TimersToPrint.
275 TimersToPrint.emplace_back(T.Time, T.Name);
286 if (FirstTimer || TimersToPrint.empty())
306 std::sort(TimersToPrint.begin(), TimersToPrint.end());
309 for (auto &RecordNamePair : TimersToPrint)
340 for (unsigned i = 0, e = TimersToPrint.size(); i != e; ++i) {
341 const std::pair<TimeRecord, std::string> &Entry = TimersToPrint[e-i-1];
350 TimersToPrint.clear();
357 // See if any of our timers were started, if so add them to TimersToPrint an
    [all...]
  /external/llvm/include/llvm/Support/
Timer.h 160 std::vector<std::pair<TimeRecord, std::string>> TimersToPrint;

Completed in 2086 milliseconds