Searched defs:getXVelocity (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DVelocityTrackerCompatHoneycomb.java25 public static float getXVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompatHoneycomb
26 return tracker.getXVelocity(pointerId);
/frameworks/support/v4/java/android/support/v4/view/
H A DVelocityTrackerCompat.java30 public float getXVelocity(VelocityTracker tracker, int pointerId); method in interface:VelocityTrackerCompat.VelocityTrackerVersionImpl
39 public float getXVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompat.BaseVelocityTrackerVersionImpl
40 return tracker.getXVelocity();
53 public float getXVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompat.HoneycombVelocityTrackerVersionImpl
54 return VelocityTrackerCompatHoneycomb.getXVelocity(tracker, pointerId);
77 * Call {@link VelocityTracker#getXVelocity(int)}.
79 * returns {@link VelocityTracker#getXVelocity()}.
81 public static float getXVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompat
82 return IMPL.getXVelocity(tracker, pointerId);
/frameworks/base/core/java/android/view/
H A DVelocityTracker.java31 * {@link #computeCurrentVelocity(int)} and then call {@link #getXVelocity(int)}
187 * the velocity with {@link #getXVelocity()} and
206 public float getXVelocity() { method in class:VelocityTracker
227 public float getXVelocity(int id) { method in class:VelocityTracker
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java396 final float endingVelocityX = mSwipeTracker.getXVelocity();
1553 public float getXVelocity() { method in class:KeyboardView.SwipeTracker

Completed in 536 milliseconds