Home
last modified time | relevance | path

Searched refs:IS_ACTION_MOVE (Results 1 – 2 of 2) sorted by relevance

/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DAccessibilityGestureDispatchTest.java24 import static android.accessibilityservice.cts.utils.GestureUtils.IS_ACTION_MOVE;
272 assertThat(moveEvent, both(IS_ACTION_MOVE).and( in testSwipe_shouldContainPointsInALine()
301 assertThat(mMotionEvents.get(1), both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint1))); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
302 assertThat(mMotionEvents.get(2), both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint2))); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
303 assertThat(mMotionEvents.get(3), both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint3))); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
330 assertEquals(numEvents - 4, getEventsMatching(IS_ACTION_MOVE).size()); in testAngledPinch_looksReasonable()
491 assertThat(mMotionEvents.subList(1, mMotionEvents.size() - 1), everyItem(IS_ACTION_MOVE)); in testContinuedGestures_motionEventsContinue()
513 waitForMotionEvents(both(IS_ACTION_MOVE).and(isAtPoint(midPoint)), 1); in testContinuedGesture_withLineDisconnect_isCancelled()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DGestureUtils.java59 public static final Matcher<MotionEvent> IS_ACTION_MOVE = field in GestureUtils