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

/frameworks/support/compat/java/android/support/v4/view/
H A DVelocityTrackerCompat.java42 * Call {@link VelocityTracker#getYVelocity(int)}.
44 * returns {@link VelocityTracker#getYVelocity()}.
46 * @deprecated Use {@link VelocityTracker#getYVelocity(int)} directly.
49 public static float getYVelocity(VelocityTracker tracker, int pointerId) { method in class:VelocityTrackerCompat
50 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/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/support/design/src/android/support/design/widget/
H A DBottomSheetBehavior.java394 } else if (mHideable && shouldHide(child, getYVelocity())) {
615 private float getYVelocity() { method in class:BottomSheetBehavior
617 return mVelocityTracker.getYVelocity(mActivePointerId);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java409 final float endingVelocityY = mSwipeTracker.getYVelocity();
1555 public float getYVelocity() { method in class:KeyboardView.SwipeTracker

Completed in 1067 milliseconds