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

/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
H A DConversationListSwipeHelper.java189 final float maxVelocity = mMaximumFlingVelocity;
190 mVelocityTracker.computeCurrentVelocity(UNIT_SECONDS, maxVelocity);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DSwipeHelper.java403 float maxVelocity = MAX_DISMISS_VELOCITY * mDensityScale;
404 mVelocityTracker.computeCurrentVelocity(1000 /* px/sec */, maxVelocity);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DKeyboardView.java1465 public void computeCurrentVelocity(int units, float maxVelocity) { argument
1496 mXVelocity = accumX < 0.0f ? Math.max(accumX, -maxVelocity)
1497 : Math.min(accumX, maxVelocity);
1498 mYVelocity = accumY < 0.0f ? Math.max(accumY, -maxVelocity)
1499 : Math.min(accumY, maxVelocity);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPhotoView.java1106 int maxVelocity = GalleryUtils.dpToPixel(MAX_DISMISS_VELOCITY);
1116 vy = Math.min(vy, maxVelocity);

Completed in 102 milliseconds