Searched refs:firstValue (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java34 private float firstValue; field in class:FloatKeyframeSet
64 firstValue = ((FloatKeyframe) mKeyframes.get(0)).getFloatValue();
66 deltaValue = lastValue - firstValue;
72 return firstValue + fraction * deltaValue;
74 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
H A DIntKeyframeSet.java34 private int firstValue; field in class:IntKeyframeSet
64 firstValue = ((IntKeyframe) mKeyframes.get(0)).getIntValue();
66 deltaValue = lastValue - firstValue;
72 return firstValue + (int)(fraction * deltaValue);
74 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).intValue();
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduParser.java1448 int firstValue = extractByteValue(pduDataStream);
1451 if (((firstValue > TEXT_MIN) && (firstValue < TEXT_MAX)) ||
1452 (END_STRING_FLAG == firstValue)) {

Completed in 106 milliseconds