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

  /external/v8/src/base/platform/
elapsed-timer.h 21 // |Elapsed()| or |HasExpired()|, and may be restarted using |Restart()|.
50 // Restarts the timer and returns the time elapsed since the previous start.
51 // This method is equivalent to obtaining the elapsed time with |Elapsed()|
58 TimeDelta elapsed = ticks - start_ticks_; local
59 DCHECK(elapsed.InMicroseconds() >= 0);
62 return elapsed;
65 // Returns the time elapsed since the previous start. This method may only
67 TimeDelta Elapsed() const {
69 TimeDelta elapsed = Now() - start_ticks_ local
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 73 TimeRecord Elapsed = TimeRecord::getCurrentTime();
74 Elapsed -= Start;
76 Elapsed.print(Elapsed, llvm::errs());
    [all...]

Completed in 66 milliseconds