Home | History | Annotate | Download | only in streams

Lines Matching refs:checkpoint

30 typedef ::testing::StrictMock<::testing::MockFunction<void(int)> > Checkpoint;
155 Checkpoint checkpoint;
163 EXPECT_CALL(checkpoint, Call(0));
165 EXPECT_CALL(checkpoint, Call(1));
168 checkpoint.Call(0);
171 checkpoint.Call(1);
181 Checkpoint checkpoint;
189 EXPECT_CALL(checkpoint, Call(0));
190 EXPECT_CALL(checkpoint, Call(1));
194 checkpoint.Call(0);
196 checkpoint.Call(1);
445 Checkpoint checkpoint;
449 EXPECT_CALL(checkpoint, Call(0));
451 EXPECT_CALL(checkpoint, Call(1));
459 checkpoint.Call(0);
462 checkpoint.Call(1);
480 Checkpoint checkpoint;
484 EXPECT_CALL(checkpoint, Call(0));
485 EXPECT_CALL(checkpoint, Call(1));
494 checkpoint.Call(0);
497 checkpoint.Call(1);