Searched defs:deltaValue (Results 1 - 3 of 3) sorted by path

/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java36 private float deltaValue; field in class:FloatKeyframeSet
66 deltaValue = lastValue - firstValue;
72 return firstValue + fraction * deltaValue;
H A DIntKeyframeSet.java36 private int deltaValue; field in class:IntKeyframeSet
66 deltaValue = lastValue - firstValue;
72 return firstValue + (int)(fraction * deltaValue);
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java221 NameValuesHolder(int nameConstant, float fromValue, float deltaValue) { argument
224 mDeltaValue = deltaValue;
780 float deltaValue = toValue - fromValue;
781 animatePropertyBy(constantName, fromValue, deltaValue);

Completed in 43 milliseconds