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

  /external/clang/test/SemaCXX/
typo-correction-delayed.cpp 193 struct TimeTicks {
197 TimeTicks::now(); // expected-error {{no member named 'now' in 'PR22297::TimeTicks'; did you mean 'Now'?}}
  /external/v8/src/base/platform/
time.h 33 class TimeTicks;
334 // TimeTicks
340 // Time::Now() may actually decrease or jump). But note that TimeTicks may
343 class V8_BASE_EXPORT TimeTicks final
344 : public time_internal::TimeBase<TimeTicks> {
346 TimeTicks() : TimeBase(0) {}
351 // This method never returns a null TimeTicks.
352 static TimeTicks Now();
358 // This method never returns a null TimeTicks.
359 static TimeTicks HighResolutionNow()
    [all...]
  /external/libchrome/base/time/
time.h 16 // TimeTicks and ThreadTicks represent an abstract time that is most of the time
20 // TimeTicks may "stand still" (e.g., if the computer is suspended), and
42 // TimeTicks: Tracking the amount of time a task runs. Executing delayed
44 // Synchronizing audio and video using TimeTicks as a common
705 // TimeTicks ------------------------------------------------------------------
708 class BASE_EXPORT TimeTicks : public time_internal::TimeBase<TimeTicks> {
710 // The underlying clock used to generate new TimeTicks.
719 TimeTicks() : TimeBase(0) {
726 static TimeTicks Now()
    [all...]

Completed in 84 milliseconds