Lines Matching refs:timePoint
102 const auto timePoint = TimePoint::fromNs(1234); in TEST_F() local
103 const auto scheduleResult = scheduler::ScheduleResult{timePoint, timePoint}; in TEST_F()
119 auto timePoint = TimePoint::fromNs(1234); in TEST_F() local
120 auto scheduleResult = scheduler::ScheduleResult{timePoint, timePoint}; in TEST_F()
129 timePoint = TimePoint::fromNs(4567); in TEST_F()
130 scheduleResult = scheduler::ScheduleResult{timePoint, timePoint}; in TEST_F()
146 const auto timePoint = TimePoint::fromNs(1234); in TEST_F() local
147 auto scheduleResult = scheduler::ScheduleResult{timePoint, timePoint}; in TEST_F()
197 const auto timePoint = TimePoint::now(); in TEST_F() local
199 EXPECT_CALL(*mEventQueue.mHandler, getExpectedVsyncTime()).WillRepeatedly(Return(timePoint)); in TEST_F()
206 EXPECT_EQ(timePoint, scheduledFrameResult->vsyncTime); in TEST_F()