Searched refs:MotionEventCopy (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNoisyVelocityTracker.java38 private ArrayDeque<MotionEventCopy> mEventBuf = new ArrayDeque<MotionEventCopy>(MAX_EVENTS);
41 private static class MotionEventCopy { class in class:NoisyVelocityTracker
42 public MotionEventCopy(float x2, float y2, long eventTime) { method in class:NoisyVelocityTracker.MotionEventCopy
63 mEventBuf.add(new MotionEventCopy(event.getX(), event.getY(), event.getEventTime()));
71 MotionEventCopy last = null;
75 for (final Iterator<MotionEventCopy> iter = mEventBuf.iterator();
77 final MotionEventCopy event = iter.next();

Completed in 46 milliseconds