HomeSort by relevance Sort by last modified time
    Searched refs:isAtPoint (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
MotionEventInjectorTest.java 162 mIsLineStart = allOf(IS_ACTION_DOWN, isAtPoint(LINE_START), hasStandardInitialization(),
164 mIsLineMiddle = allOf(IS_ACTION_MOVE, isAtPoint(LINE_END), hasStandardInitialization(),
166 mIsLineEnd = allOf(IS_ACTION_UP, isAtPoint(LINE_END), hasStandardInitialization(),
168 mIsClickDown = allOf(IS_ACTION_DOWN, isAtPoint(CLICK_POINT), hasStandardInitialization(),
170 mIsClickUp = allOf(IS_ACTION_UP, isAtPoint(CLICK_POINT), hasStandardInitialization(),
391 assertThat(events.get(0), allOf(isAtPoint(CONTINUED_LINE_START), IS_ACTION_DOWN,
394 assertThat(events.get(1), allOf(isAtPoint(CONTINUED_LINE_MID1), IS_ACTION_MOVE,
399 assertThat(events.get(2), allOf(isAtPoint(CONTINUED_LINE_MID2), IS_ACTION_MOVE));
400 assertThat(events.get(3), allOf(isAtPoint(CONTINUED_LINE_END), IS_ACTION_MOVE,
402 assertThat(events.get(4), allOf(isAtPoint(CONTINUED_LINE_END), IS_ACTION_UP
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityGestureDispatchTest.java 153 assertThat(clickDown, both(IS_ACTION_DOWN).and(isAtPoint(clickPoint)));
154 assertThat(clickUp, both(IS_ACTION_UP).and(isAtPoint(clickPoint)));
186 assertThat(clickDown, both(IS_ACTION_DOWN).and(isAtPoint(clickPoint)));
187 assertThat(clickUp, both(IS_ACTION_UP).and(isAtPoint(clickPoint)));
211 assertThat(downEvent, both(IS_ACTION_DOWN).and(isAtPoint(startPoint)));
212 assertThat(upEvent, both(IS_ACTION_UP).and(isAtPoint(endPoint)));
223 assertThat(moveEvent, both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint)));
249 assertThat(mMotionEvents.get(0), both(IS_ACTION_DOWN).and(isAtPoint(startPoint)));
250 assertThat(mMotionEvents.get(1), both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint1)));
251 assertThat(mMotionEvents.get(2), both(IS_ACTION_MOVE).and(isAtPoint(intermediatePoint2)))
    [all...]

Completed in 462 milliseconds