Searched defs:firstValue (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java34 private float firstValue; field in class:FloatKeyframeSet
70 firstValue = ((FloatKeyframe) mKeyframes.get(0)).getFloatValue();
72 deltaValue = lastValue - firstValue;
78 return firstValue + fraction * deltaValue;
80 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
H A DIntKeyframeSet.java34 private int firstValue; field in class:IntKeyframeSet
70 firstValue = ((IntKeyframe) mKeyframes.get(0)).getIntValue();
72 deltaValue = lastValue - firstValue;
78 return firstValue + (int)(fraction * deltaValue);
80 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).intValue();

Completed in 46 milliseconds