Home | History | Annotate | Download | only in accessibilityservice

Lines Matching refs:motionEvents

429      * Class to convert a GestureDescription to a series of MotionEvents.
435 * Constants used to initialize all MotionEvents
478 final List<MotionEvent> motionEvents = new ArrayList<>();
490 appendMoveEventIfNeeded(motionEvents, lastTouchPoints, lastTouchPointSize,
492 lastTouchPointSize = appendUpEvents(motionEvents, lastTouchPoints,
495 lastTouchPointSize = appendDownEvents(motionEvents, lastTouchPoints,
499 return motionEvents;
542 private static void appendMoveEventIfNeeded(List<MotionEvent> motionEvents,
558 long downTime = motionEvents.get(motionEvents.size() - 1).getDownTime();
559 motionEvents.add(obtainMotionEvent(downTime, currentTime, MotionEvent.ACTION_MOVE,
564 private static int appendUpEvents(List<MotionEvent> motionEvents,
575 long downTime = motionEvents.get(motionEvents.size() - 1).getDownTime();
579 motionEvents.add(obtainMotionEvent(downTime, currentTime, action,
591 private static int appendDownEvents(List<MotionEvent> motionEvents,
602 motionEvents.get(motionEvents.size() - 1).getDownTime();
604 motionEvents.add(obtainMotionEvent(downTime, currentTime, action,