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

  /external/llvm/lib/Support/
Timer.cpp 81 static TimerGroup *DefaultTimerGroup = 0;
82 static TimerGroup *getDefaultTimerGroup() {
83 TimerGroup *tmp = DefaultTimerGroup;
90 tmp = new TimerGroup("Miscellaneous Ungrouped Timers");
111 void Timer::init(StringRef N, TimerGroup &tg) {
200 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
203 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator
211 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName];
214 GroupEntry.first = new TimerGroup(GroupName);
246 // TimerGroup Implementatio
    [all...]
  /external/llvm/include/llvm/Support/
Timer.h 24 class TimerGroup;
77 /// when its TimerGroup is destroyed. Timers do not print their information
84 TimerGroup *TG; // The TimerGroup this Timer is in.
89 Timer(StringRef N, TimerGroup &tg) : TG(0) { init(N, tg); }
102 void init(StringRef N, TimerGroup &tg);
118 friend class TimerGroup;
156 /// The TimerGroup class is used to group together related timers into a single
157 /// report that is printed when the TimerGroup is destroyed. It is illegal to
158 /// destroy a TimerGroup object before all of the Timers in it are gone.
    [all...]

Completed in 586 milliseconds