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.java23 import static android.accessibilityservice.cts.utils.GestureUtils.IS_ACTION_MOVE;
266 assertThat(moveEvent, both(IS_ACTION_MOVE).and( in testSwipe_shouldContainPointsInALine()
295 assertThat(mMotionEvents.get(1), both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint1))); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
296 assertThat(mMotionEvents.get(2), both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint2))); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
297 assertThat(mMotionEvents.get(3), both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint3))); in testSlowSwipe_shouldNotContainMovesForTinyMovement()
324 assertEquals(numEvents - 4, getEventsMatching(IS_ACTION_MOVE).size()); in testAngledPinch_looksReasonable()
463 assertThat(mMotionEvents.subList(1, mMotionEvents.size() - 1), everyItem(IS_ACTION_MOVE)); in testContinuedGestures_motionEventsContinue()
485 waitForMotionEvents(both(IS_ACTION_MOVE).and(isAtPoint(midPoint)), 1); in testContinuedGesture_withLineDisconnect_isCancelled()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DGestureUtils.java50 public static final Matcher<MotionEvent> IS_ACTION_MOVE = field in GestureUtils