HomeSort by relevance Sort by last modified time
    Searched defs:mDeceleration (Results 1 - 6 of 6) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/
MoveScreensaverRunnable.java 47 private final Interpolator mDeceleration = new DecelerateInterpolator();
115 mActiveAnimator.setInterpolator(mDeceleration);
132 show.setInterpolator(mDeceleration);
  /frameworks/base/core/java/android/widget/
Scroller.java 108 private float mDeceleration;
177 mDeceleration = computeDeceleration(ViewConfiguration.getScrollFriction());
191 mDeceleration = computeDeceleration(friction);
256 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;
OverScroller.java 557 private float mDeceleration;
690 mDeceleration = 0.0f;
739 mDeceleration = getDeceleration(delta);
743 mDuration = (int) (1000.0 * Math.sqrt(-2.0 * delta / mDeceleration));
801 final float durationToApex = - velocity / mDeceleration;
804 final float distanceToApex = velocitySquared / 2.0f / Math.abs(mDeceleration);
807 2.0 * (distanceToApex + distanceToEdge) / Math.abs(mDeceleration));
810 mVelocity = (int) (- mDeceleration * totalDuration);
814 mDeceleration = getDeceleration(velocity == 0 ? start - end : velocity);
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 71 private float mDeceleration;
129 mDeceleration = computeDeceleration(ViewConfiguration.getScrollFriction());
141 mDeceleration = computeDeceleration(friction);
204 return mVelocity - mDeceleration * timePassed() / 2000.0f;
OverScroller.java 556 private float mDeceleration;
692 mDeceleration = 0.0f;
741 mDeceleration = getDeceleration(delta);
745 mDuration = (int) (1000.0 * Math.sqrt(-2.0 * delta / mDeceleration));
803 final float durationToApex = - velocity / mDeceleration;
804 final float distanceToApex = velocity * velocity / 2.0f / Math.abs(mDeceleration);
807 2.0 * (distanceToApex + distanceToEdge) / Math.abs(mDeceleration));
810 mVelocity = (int) (- mDeceleration * totalDuration);
814 mDeceleration = getDeceleration(velocity == 0 ? start - end : velocity);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 76 private float mDeceleration;
155 mDeceleration = computeDeceleration(ViewConfiguration.getScrollFriction());
169 mDeceleration = computeDeceleration(friction);
234 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;

Completed in 61 milliseconds