Searched refs:toValue (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/libs/hwui/
H A DPropertyValuesHolder.cpp59 inline U8CPU lerp(U8CPU fromValue, U8CPU toValue, float fraction) { argument
60 return (U8CPU) (fromValue * (1 - fraction) + toValue * fraction);
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java67 * @param toValue the target value
71 String property, float toValue, boolean replace) {
75 ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue);
70 addAnimTo(long duration, long delay, String property, float toValue, boolean replace) argument
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java916 * @param toValue The value to which the property will animate
918 private void animateProperty(int constantName, float toValue) { argument
920 float deltaValue = toValue - fromValue;

Completed in 5047 milliseconds