Searched defs:TimeRecord (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Support/
H A DTimer.h27 class TimeRecord { class in namespace:llvm
33 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {} function in class:llvm::TimeRecord
39 static TimeRecord getCurrentTime(bool Start = true);
49 bool operator<(const TimeRecord &T) const {
54 void operator+=(const TimeRecord &RHS) {
60 void operator-=(const TimeRecord &RHS) {
69 void print(const TimeRecord &Total, raw_ostream &OS) const;
81 TimeRecord Time;
164 std::vector<std::pair<TimeRecord, std::string> > TimersToPrint;

Completed in 98 milliseconds