Home | History | Annotate | Download | only in widget

Lines Matching defs:mVelocity

552         private int mVelocity;
692 mVelocity = 0;
719 mVelocity = 0;
742 mVelocity = -delta; // only sign is used
750 mCurrVelocity = mVelocity = velocity;
809 mVelocity = (int) (- mDeceleration * totalDuration);
853 // mStart, mVelocity and mStartTime were adjusted to their values when edge was reached.
854 float distance = mVelocity * mVelocity / (2.0f * Math.abs(mDeceleration));
855 final float sign = Math.signum(mVelocity);
859 mDeceleration = - sign * mVelocity * mVelocity / (2.0f * mOver);
865 mFinal = mStart + (int) (mVelocity > 0 ? distance : -distance);
866 mDuration = - (int) (1000.0f * mVelocity / mDeceleration);
877 mVelocity = (int) mCurrVelocity;
878 mDeceleration = getDeceleration(mVelocity);
938 mCurrVelocity = mVelocity + mDeceleration * t;
939 distance = mVelocity * t + mDeceleration * t * t / 2.0f;
946 final float sign = Math.signum(mVelocity);