Searched defs:mAnimatedValue (Results 1 - 3 of 3) sorted by last modified time

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

Completed in 71 milliseconds