Searched refs:mActions (Results 1 – 1 of 1) sorted by relevance
31 private final Deque<PointerAction> mActions = new ArrayDeque<>(); field in PointerGesture53 mActions.addFirst(new PointerPauseAction(startPoint, 0)); in PointerGesture()72 mActions.addLast(new PointerPauseAction(mActions.peekLast().end, time)); in pause()73 mDuration += mActions.peekLast().duration; in pause()79 mActions.addLast(new PointerLinearMoveAction(mActions.peekLast().end, dest, speed)); in move()80 mDuration += mActions.peekLast().duration; in move()86 return mActions.peekFirst().start; in start()91 return mActions.peekLast().end; in end()110 for (PointerAction action : mActions) { in pointAt()116 return mActions.peekLast().end; in pointAt()[all …]