Lines Matching refs:consumed
144 auto consumed = window->consumeMotionEvent(WithMotionAction(ACTION_DOWN)); in tapAndExpect() local
145 s.expectDispatchTraced(dispatchTraceLevel, {*consumed, window}); in tapAndExpect()
154 auto consumed = window->consumeMotionEvent(WithMotionAction(ACTION_UP)); in tapAndExpect() local
155 s.expectDispatchTraced(dispatchTraceLevel, {*consumed, window}); in tapAndExpect()
166 auto consumed = window->consumeKeyEvent(WithKeyAction(ACTION_DOWN)); in keypressAndExpect() local
167 s.expectDispatchTraced(dispatchTraceLevel, {*consumed, window}); in keypressAndExpect()
174 auto consumed = window->consumeKeyEvent(WithKeyAction(ACTION_UP)); in keypressAndExpect() local
175 s.expectDispatchTraced(dispatchTraceLevel, {*consumed, window}); in keypressAndExpect()
601 auto consumed = window->consumeMotionEvent(WithMotionAction(ACTION_DOWN)); in TEST_F() local
602 s.expectDispatchTraced(Level::NONE, {*consumed, window}); in TEST_F()
607 consumed = window->consumeMotionEvent(WithMotionAction(ACTION_CANCEL)); in TEST_F()
608 s.expectMotionTraced(Level::NONE, *consumed); in TEST_F()
609 s.expectDispatchTraced(Level::NONE, {*consumed, window}); in TEST_F()
637 auto consumed = window->consumeMotionEvent(WithMotionAction(ACTION_DOWN)); in TEST_F() local
638 s.expectDispatchTraced(Level::REDACTED, {*consumed, window}); in TEST_F()
642 consumed = window->consumeMotionEvent(WithMotionAction(ACTION_CANCEL)); in TEST_F()
643 s.expectMotionTraced(Level::NONE, *consumed); in TEST_F()
644 s.expectDispatchTraced(Level::REDACTED, {*consumed, window}); in TEST_F()
690 auto consumed = window->consumeMotionEvent(WithMotionAction(ACTION_DOWN)); in TEST_F() local
691 s1->expectDispatchTraced(Level::COMPLETE, {*consumed, window}); in TEST_F()
692 s2->expectDispatchTraced(Level::REDACTED, {*consumed, window}); in TEST_F()
693 s3->expectDispatchTraced(Level::COMPLETE, {*consumed, window}); in TEST_F()
704 consumed = window->consumeMotionEvent(WithMotionAction(ACTION_MOVE)); in TEST_F()
705 s1->expectDispatchTraced(Level::COMPLETE, {*consumed, window}); in TEST_F()
706 s2->expectDispatchTraced(Level::NONE, {*consumed, window}); in TEST_F()
707 s3->expectDispatchTraced(Level::COMPLETE, {*consumed, window}); in TEST_F()
720 consumed = window->consumeMotionEvent(WithMotionAction(ACTION_MOVE)); in TEST_F()
721 s1->expectDispatchTraced(Level::COMPLETE, {*consumed, window}); in TEST_F()
722 s2->expectDispatchTraced(Level::REDACTED, {*consumed, window}); in TEST_F()
723 s3->expectDispatchTraced(Level::NONE, {*consumed, window}); in TEST_F()
737 consumed = window->consumeMotionEvent(WithMotionAction(ACTION_UP)); in TEST_F()
738 s1->expectDispatchTraced(Level::COMPLETE, {*consumed, window}); in TEST_F()
739 s3->expectDispatchTraced(Level::COMPLETE, {*consumed, window}); in TEST_F()