Searched defs:mDeceleration (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DScroller.java108 private float mDeceleration; field in class:Scroller
183 mDeceleration = computeDeceleration(ViewConfiguration.getScrollFriction());
197 mDeceleration = computeDeceleration(friction);
262 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;
H A DOverScroller.java557 private float mDeceleration; field in class:OverScroller.SplineOverScroller
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;
802 final float distanceToApex = velocity * velocity / 2.0f / Math.abs(mDeceleration);
805 2.0 * (distanceToApex + distanceToEdge) / Math.abs(mDeceleration));
808 mVelocity = (int) (- mDeceleration * totalDuration);
812 mDeceleration = getDeceleration(velocity == 0 ? start - end : velocity);
853 float distance = mVelocity * mVelocity / (2.0f * Math.abs(mDeceleration));
[all...]

Completed in 91 milliseconds