Home | History | Annotate | Download | only in display

Lines Matching defs:mCurrentValue

32     private int mCurrentValue;
37 private float mAnimatedValue; // higher precision copy of mCurrentValue
63 if (mFirstTime || target != mCurrentValue) {
67 mCurrentValue = target;
90 || (target <= mCurrentValue && mCurrentValue <= mTargetValue)
91 || (mTargetValue <= mCurrentValue && mCurrentValue <= target)) {
99 if (!mAnimating && target != mCurrentValue) {
101 mAnimatedValue = mCurrentValue;
149 if (mTargetValue > mCurrentValue) {
155 final int oldCurrentValue = mCurrentValue;
156 mCurrentValue = Math.round(mAnimatedValue);
158 if (oldCurrentValue != mCurrentValue) {
159 mProperty.setValue(mObject, mCurrentValue);
162 if (mTargetValue != mCurrentValue) {