Searched refs:toValue (Results 1 – 4 of 4) 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()
177 final int toValue = context.getResources() in connect() local179 parallax.addEffect(frameTop.atAbsolute(fromValue), frameTop.atAbsolute(toValue)) in connect()
71 String property, float toValue, boolean replace) { in addAnimTo() argument75 ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue); in addAnimTo()
919 private void animateProperty(int constantName, float toValue) { in animateProperty() argument921 float deltaValue = toValue - fromValue; in animateProperty()