Home | History | Annotate | Download | only in webkit

Lines Matching refs:mLastVelocity

822     private float mLastVelocity;
3125 mLastVelocity = 0;
3841 mLastVelocity = 0;
6174 mLastVelocity = 0;
6835 if (mLastVelocity > 0 && currentVelocity > 0 && velocity
6836 > mLastVelocity * MINIMUM_VELOCITY_RATIO_FOR_ACCELERATION) {
6841 vx += currentVelocity * mLastVelX / mLastVelocity;
6842 vy += currentVelocity * mLastVelY / mLastVelocity;
6851 Log.v(LOGTAG, "doFling start last=" + mLastVelocity
6880 mLastVelocity = velocity;