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

  /external/libchrome/base/test/
simple_test_tick_clock.cc 17 return now_ticks_;
23 now_ticks_ += delta;
28 now_ticks_ = ticks;
simple_test_tick_clock.h 33 // Protects |now_ticks_|.
36 TimeTicks now_ticks_; member in class:base::SimpleTestTickClock
test_mock_time_task_runner.cc 154 : now_(Time::UnixEpoch()), now_ticks_(start_ticks), next_task_ordinal_(0) {}
163 const TimeTicks original_now_ticks = now_ticks_;
192 return now_ticks_;
231 : tasks_.top().GetTimeToRun() - now_ticks_;
246 tasks_.push(TestOrderedPendingTask(from_here, std::move(task), now_ticks_,
287 const TimeTicks original_now_ticks = now_ticks_;
294 // be less than |now_ticks_|. ForwardClocksUntilTickTime() takes care of not
304 if (later_ticks <= now_ticks_)
307 now_ += later_ticks - now_ticks_;
308 now_ticks_ = later_ticks
    [all...]
test_mock_time_task_runner.h 190 // Forwards |now_ticks_| until it equals |later_ticks|, and forwards |now_| by
191 // the same amount. Calls OnAfterTimePassed() if |later_ticks| > |now_ticks_|.
192 // Does nothing if |later_ticks| <= |now_ticks_|.
207 TimeTicks now_ticks_; member in class:base::TestMockTimeTaskRunner

Completed in 635 milliseconds