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

/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java37 private float deltaValue; field in class:FloatKeyframeSet
73 deltaValue = lastValue - firstValue;
79 return firstValue + fraction * deltaValue;
H A DIntKeyframeSet.java37 private int deltaValue; field in class:IntKeyframeSet
73 deltaValue = lastValue - firstValue;
79 return firstValue + (int)(fraction * deltaValue);
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java240 NameValuesHolder(int nameConstant, float fromValue, float deltaValue) { argument
243 mDeltaValue = deltaValue;
922 float deltaValue = toValue - fromValue;
923 animatePropertyBy(constantName, fromValue, deltaValue);

Completed in 71 milliseconds