HomeSort by: relevance | last modified time | path
    Searched defs:TimerGroup (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
Timer.cpp 97 return new TimerGroup("misc", "Miscellaneous Ungrouped Timers");
101 static ManagedStatic<TimerGroup, CreateDefaultTimerGroup> DefaultTimerGroup;
102 static TimerGroup *getDefaultTimerGroup() { return &*DefaultTimerGroup; }
113 TimerGroup &tg) {
219 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
222 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator
231 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName];
234 GroupEntry.first = new TimerGroup(GroupName, GroupDescription);
255 // TimerGroup Implementation
258 /// This is the global list of TimerGroups, maintained by the TimerGroup
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Timer.h 23 class TimerGroup;
80 /// TimerGroup is destroyed. Timers do not print their information if they are
89 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in.
97 Timer(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) {
112 void init(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg);
139 friend class TimerGroup;
172 /// The TimerGroup class is used to group together related timers into a single
173 /// report that is printed when the TimerGroup is destroyed. It is illegal to
174 /// destroy a TimerGroup object before all of the Timers in it are gone.
    [all...]

Completed in 17 milliseconds