Searched refs:toValue (Results 1 – 5 of 5) sorted by relevance
29 inline constexpr float lerp(float fromValue, float toValue, float fraction) { in lerp() argument30 return float(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()
518 public static int toValue(BlendMode mode) { in toValue() method in BlendMode
909 private void animateProperty(int constantName, float toValue) { in animateProperty() argument911 float deltaValue = toValue - fromValue; in animateProperty()
852 dest.writeInt(BlendMode.toValue(mBlendMode)); in writeToParcel()