Home
last modified time | relevance | path

Searched refs:mAnimatedValue (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/display/
DRampAnimator.java37 private float mAnimatedValue; // higher precision copy of mCurrentValue field in RampAnimator
101 mAnimatedValue = mCurrentValue; in animateTo()
146 mAnimatedValue = mTargetValue;
150 mAnimatedValue = Math.min(mAnimatedValue + amount, mTargetValue);
152 mAnimatedValue = Math.max(mAnimatedValue - amount, mTargetValue);
156 mCurrentValue = Math.round(mAnimatedValue);
/frameworks/support/transition/tests/src/android/support/transition/
DBaseTransitionTest.java42 float mAnimatedValue; field in BaseTransitionTest
113 mAnimatedValue = animatedValue; in setAnimatedValue()
/frameworks/base/core/java/android/animation/
DPropertyValuesHolder.java123 private Object mAnimatedValue; field in PropertyValuesHolder
1018 mAnimatedValue = mConverter == null ? value : mConverter.convert(value); in calculateValue()
1070 return mAnimatedValue; in getAnimatedValue()