Searched defs:getYVelocity (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DVelocityTrackerCompatHoneycomb.java28 public static float getYVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompatHoneycomb
29 return tracker.getYVelocity(pointerId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DVelocityTrackerInterface.java29 public float getYVelocity(); method in interface:VelocityTrackerInterface
H A DPlatformVelocityTracker.java63 public float getYVelocity() { method in class:PlatformVelocityTracker
64 return mTracker.getYVelocity();
H A DNoisyVelocityTracker.java124 public float getYVelocity() { method in class:NoisyVelocityTracker
/frameworks/support/v4/java/android/support/v4/view/
H A DVelocityTrackerCompat.java31 public float getYVelocity(VelocityTracker tracker, int pointerId); method in interface:VelocityTrackerCompat.VelocityTrackerVersionImpl
43 public float getYVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompat.BaseVelocityTrackerVersionImpl
44 return tracker.getYVelocity();
57 public float getYVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompat.HoneycombVelocityTrackerVersionImpl
58 return VelocityTrackerCompatHoneycomb.getYVelocity(tracker, pointerId);
86 * Call {@link VelocityTracker#getYVelocity(int)}.
88 * returns {@link VelocityTracker#getYVelocity()}.
90 public static float getYVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompat
91 return IMPL.getYVelocity(tracker, pointerId);
/frameworks/base/core/java/android/view/
H A DVelocityTracker.java29 * and {@link #getYVelocity(int)} to retrieve the velocity for each pointer id.
144 * {@link #getYVelocity()}.
172 public float getYVelocity() { method in class:VelocityTracker
194 public float getYVelocity(int id) { method in class:VelocityTracker
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java401 final float endingVelocityY = mSwipeTracker.getYVelocity();
1562 public float getYVelocity() { method in class:KeyboardView.SwipeTracker

Completed in 9667 milliseconds