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

  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 437 float yVelocity = velocityTracker.getYVelocity();
443 negative = yVelocity < 0;
452 if (yVelocity < 0) {
453 yVelocity = -yVelocity;
455 if (yVelocity > mMaximumMinorVelocity) {
456 yVelocity = mMaximumMinorVelocity;
460 float velocity = (float) Math.hypot(xVelocity, yVelocity);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
MediaPickerPanel.java 492 final float yVelocity = dy / dt;
499 Math.abs(yVelocity) > mFlingThresholdPx) {
500 if (yVelocity < 0 && mExpanded) {
503 } else if (yVelocity > 0) {
504 if (mFullScreen && yVelocity < mBigFlingThresholdPx) {
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
ItemTouchHelper.java     [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 

Completed in 518 milliseconds