Searched defs:getXVelocity (Results 1 - 7 of 7) 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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DVelocityTrackerInterface.java28 public float getXVelocity(); method in interface:VelocityTrackerInterface
H A DPlatformVelocityTracker.java58 public float getXVelocity() { method in class:PlatformVelocityTracker
59 return mTracker.getXVelocity();
H A DNoisyVelocityTracker.java117 public float getXVelocity() { method in class:NoisyVelocityTracker
/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.java28 * {@link #computeCurrentVelocity(int)} and then call {@link #getXVelocity(int)}
143 * the velocity with {@link #getXVelocity()} and
162 public float getXVelocity() { method in class:VelocityTracker
183 public float getXVelocity(int id) { method in class:VelocityTracker
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java400 final float endingVelocityX = mSwipeTracker.getXVelocity();
1558 public float getXVelocity() { method in class:KeyboardView.SwipeTracker

Completed in 2404 milliseconds