Home
last modified time | relevance | path

Searched refs:maxVelocity (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DKeyboardView.java1465 public void computeCurrentVelocity(int units, float maxVelocity) { in computeCurrentVelocity() argument
1496 mXVelocity = accumX < 0.0f ? Math.max(accumX, -maxVelocity) in computeCurrentVelocity()
1497 : Math.min(accumX, maxVelocity); in computeCurrentVelocity()
1498 mYVelocity = accumY < 0.0f ? Math.max(accumY, -maxVelocity) in computeCurrentVelocity()
1499 : Math.min(accumY, maxVelocity); in computeCurrentVelocity()
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DSwipeHelper.java403 float maxVelocity = MAX_DISMISS_VELOCITY * mDensityScale; in onTouchEvent() local
404 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity); in onTouchEvent()
/packages/apps/Dialer/src/com/android/dialer/list/
DSwipeHelper.java398 float maxVelocity = MAX_DISMISS_VELOCITY * mDensityScale; in onTouchEvent() local
399 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity); in onTouchEvent()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DPhotoView.java1107 int maxVelocity = GalleryUtils.dpToPixel(MAX_DISMISS_VELOCITY); in flingImages() local
1117 vy = Math.min(vy, maxVelocity); in flingImages()