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

/frameworks/base/core/jni/
H A Dandroid_view_VelocityTracker.cpp51 void computeCurrentVelocity(int32_t units, float maxVelocity);
80 void VelocityTrackerState::computeCurrentVelocity(int32_t units, float maxVelocity) { argument
93 if (vx > maxVelocity) {
94 vx = maxVelocity;
95 } else if (vx < -maxVelocity) {
96 vx = -maxVelocity;
98 if (vy > maxVelocity) {
99 vy = maxVelocity;
100 } else if (vy < -maxVelocity) {
101 vy = -maxVelocity;
172 android_view_VelocityTracker_nativeComputeCurrentVelocity(JNIEnv* env, jclass clazz, jlong ptr, jint units, jfloat maxVelocity) argument
[all...]
/frameworks/base/core/java/android/view/
H A DVelocityTracker.java44 private static native void nativeComputeCurrentVelocity(long ptr, int units, float maxVelocity); argument
148 * @param maxVelocity The maximum velocity that can be computed by this method.
152 public void computeCurrentVelocity(int units, float maxVelocity) { argument
153 nativeComputeCurrentVelocity(mPtr, units, maxVelocity);
/frameworks/support/v4/java/android/support/v4/widget/
H A DAutoScrollHelper.java213 final int maxVelocity = (int) (DEFAULT_MAXIMUM_VELOCITY_DIPS * metrics.density + 0.5f);
215 setMaximumVelocity(maxVelocity, maxVelocity);
/frameworks/base/core/java/com/android/internal/widget/
H A DAutoScrollHelper.java212 final int maxVelocity = (int) (DEFAULT_MAXIMUM_VELOCITY_DIPS * metrics.density + 0.5f);
214 setMaximumVelocity(maxVelocity, maxVelocity);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java440 float maxVelocity = MAX_DISMISS_VELOCITY * mDensityScale;
441 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java1521 public void computeCurrentVelocity(int units, float maxVelocity) { argument
1552 mXVelocity = accumX < 0.0f ? Math.max(accumX, -maxVelocity)
1553 : Math.min(accumX, maxVelocity);
1554 mYVelocity = accumY < 0.0f ? Math.max(accumY, -maxVelocity)
1555 : Math.min(accumY, maxVelocity);

Completed in 584 milliseconds