Lines Matching +full:one +full:- +full:time
90 auto time = duration_cast<microseconds>(seconds(2)); in TEST_F() local
91 EXPECT_GE(timer.start(time), 0); in TEST_F()
98 // Returns -0- on timeout and positive number on dispatch in TEST_F()
115 auto time = duration_cast<microseconds>(seconds(2)); in TEST_F() local
116 EXPECT_GE(timer.start(time), 0); in TEST_F()
126 // Returns -0- on timeout in TEST_F()
135 // 2 because of one more count that happens prior to exiting in TEST_F()
146 auto time = duration_cast<microseconds>(seconds(2)); in TEST_F() local
147 EXPECT_GE(timer.start(time), 0); in TEST_F()
153 time = duration_cast<microseconds>(seconds(3)); in TEST_F()
154 EXPECT_GE(timer.start(time), 0); in TEST_F()
160 // Returns -0- on timeout in TEST_F()
178 auto time = duration_cast<microseconds>(seconds(2)); in TEST_F() local
179 EXPECT_GE(timer.start(time), 0); in TEST_F()
185 time = duration_cast<microseconds>(seconds(2)); in TEST_F()
186 EXPECT_GE(timer.start(time), 0); in TEST_F()
196 // Returns -0- on timeout in TEST_F()
205 // 2 because of one more count that happens prior to exiting in TEST_F()
214 auto time = duration_cast<microseconds>(seconds(2)); in TEST_F() local
215 EXPECT_GE(timer->start(time), 0); in TEST_F()
220 while (count < 2 && !timer->isExpired()) in TEST_F()
222 // Returns -0- on timeout and positive number on dispatch in TEST_F()
229 EXPECT_EQ(true, timer->isExpired()); in TEST_F()
240 auto time = duration_cast<microseconds>(seconds(2)); in TEST_F() local
241 EXPECT_GE(timer->start(time), 0); in TEST_F()
245 EXPECT_GE(timer->stop(), 0); in TEST_F()
251 // Returns -0- on timeout in TEST_F()
258 EXPECT_EQ(false, timer->isExpired()); in TEST_F()
261 // 2 because of one more count that happens prior to exiting in TEST_F()