HomeSort by relevance Sort by last modified time
    Searched full:lastvalue (Results 1 - 25 of 25) sorted by null

  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 35 private float lastValue;
65 lastValue = ((FloatKeyframe) mKeyframes.get(1)).getFloatValue();
66 deltaValue = lastValue - firstValue;
74 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
IntKeyframeSet.java 35 private int lastValue;
65 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue();
66 deltaValue = lastValue - firstValue;
74 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).intValue();