Searched refs:toValue (Results 1 – 3 of 3) sorted by relevance
59 inline U8CPU lerp(U8CPU fromValue, U8CPU toValue, float fraction) { in lerp() argument60 return (U8CPU) (fromValue * (1 - fraction) + toValue * fraction); in lerp()
71 String property, float toValue, boolean replace) { in addAnimTo() argument75 ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue); in addAnimTo()
918 private void animateProperty(int constantName, float toValue) { in animateProperty() argument920 float deltaValue = toValue - fromValue; in animateProperty()