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

  /external/llvm/include/llvm/Support/
Timer.h 27 class TimeRecord {
33 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {}
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;
  /external/llvm/lib/Support/
Timer.cpp 129 TimeRecord TimeRecord::getCurrentTime(bool Start) {
130 TimeRecord Result;
152 Time -= TimeRecord::getCurrentTime(true);
156 Time += TimeRecord::getCurrentTime(false);
175 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const {
318 TimeRecord Total;
351 const std::pair<TimeRecord, std::string> &Entry = TimersToPrint[e-i-1];
375 T->Time = TimeRecord();
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 670 const llvm::TimeRecord &StartTime = llvm::TimeRecord::getCurrentTime();
738 const llvm::TimeRecord &EndTime = llvm::TimeRecord::getCurrentTime();
    [all...]
CIndex.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 52 using llvm::TimeRecord;
57 TimeRecord Start;
63 Start = TimeRecord::getCurrentTime();
73 TimeRecord Elapsed = TimeRecord::getCurrentTime();
    [all...]

Completed in 415 milliseconds