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

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

Completed in 87 milliseconds