HomeSort by relevance Sort by last modified time
    Searched refs:maxVelocity (Results 1 - 15 of 15) sorted by null

  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 51 void computeCurrentVelocity(int32_t units, float maxVelocity);
80 void VelocityTrackerState::computeCurrentVelocity(int32_t units, float maxVelocity) {
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;
    [all...]
  /frameworks/base/core/java/android/view/
VelocityTracker.java 44 private static native void nativeComputeCurrentVelocity(int ptr, int units, float maxVelocity);
148 * @param maxVelocity The maximum velocity that can be computed by this method.
152 public void computeCurrentVelocity(int units, float maxVelocity) {
153 nativeComputeCurrentVelocity(mPtr, units, maxVelocity);
  /frameworks/support/v4/java/android/support/v4/widget/
AutoScrollHelper.java 213 final int maxVelocity = (int) (DEFAULT_MAXIMUM_VELOCITY_DIPS * metrics.density + 0.5f);
215 setMaximumVelocity(maxVelocity, maxVelocity);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AutoScrollHelper.java 212 final int maxVelocity = (int) (DEFAULT_MAXIMUM_VELOCITY_DIPS * metrics.density + 0.5f);
214 setMaximumVelocity(maxVelocity, maxVelocity);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 368 float maxVelocity = MAX_DISMISS_VELOCITY * mDensityScale;
369 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
  /packages/apps/Dialer/src/com/android/dialer/list/
SwipeHelper.java 398 float maxVelocity = MAX_DISMISS_VELOCITY * mDensityScale;
399 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeHelper.java 403 float maxVelocity = MAX_DISMISS_VELOCITY * mDensityScale;
404 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java     [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java     [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 

Completed in 9335 milliseconds