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

/frameworks/base/core/java/android/widget/
H A DScroller.java88 private float mCurrVelocity; field in class:Scroller
262 mCurrVelocity : mVelocity - mDeceleration * timePassed() / 2000.0f;
339 mCurrVelocity = velocityCoef * mDistance / mDuration * 1000.0f;
H A DOverScroller.java176 float squaredNorm = mScrollerX.mCurrVelocity * mScrollerX.mCurrVelocity;
177 squaredNorm += mScrollerY.mCurrVelocity * mScrollerY.mCurrVelocity;
437 float oldVelocityX = mScrollerX.mCurrVelocity;
438 float oldVelocityY = mScrollerY.mCurrVelocity;
554 private float mCurrVelocity; field in class:OverScroller.SplineOverScroller
698 // mCurrVelocity = 0.0f;
749 mCurrVelocity = mVelocity = velocity;
847 startAfterEdge(start, end, end, (int) mCurrVelocity);
[all...]

Completed in 63 milliseconds