Searched refs:fromValue (Results 1 - 2 of 2) 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/android/view/
H A DViewPropertyAnimator.java238 NameValuesHolder(int nameConstant, float fromValue, float deltaValue) { argument
240 mFromValue = fromValue;
919 float fromValue = getValue(constantName);
920 float deltaValue = toValue - fromValue;
921 animatePropertyBy(constantName, fromValue, deltaValue);
933 float fromValue = getValue(constantName);
934 animatePropertyBy(constantName, fromValue, byValue);

Completed in 148 milliseconds