Searched refs:endValue (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DFloatEvaluator.java28 * where <code>x0</code> is <code>startValue</code>, <code>x1</code> is <code>endValue</code>,
34 * @param endValue The end value; should be of type <code>float</code> or <code>Float</code>
38 public Float evaluate(float fraction, Number startValue, Number endValue) { argument
40 return startFloat + fraction * (endValue.floatValue() - startFloat);
H A DIntEvaluator.java28 * where <code>x0</code> is <code>startValue</code>, <code>x1</code> is <code>endValue</code>,
34 * @param endValue The end value; should be of type <code>int</code> or <code>Integer</code>
38 public Integer evaluate(float fraction, Integer startValue, Integer endValue) { argument
40 return (int)(startInt + fraction * (endValue - startInt));
H A DTypeEvaluator.java33 * where <code>x0</code> is <code>startValue</code>, <code>x1</code> is <code>endValue</code>,
38 * @param endValue The end value.
42 public T evaluate(float fraction, T startValue, T endValue); argument
H A DArgbEvaluator.java34 * @param endValue A 32-bit int value representing colors in the
41 public Object evaluate(float fraction, Object startValue, Object endValue) { argument
48 int endInt = (Integer) endValue;
/frameworks/base/tools/aapt/
H A DResourceTable.cpp973 Res_value endValue; local
974 if (!ResTable::stringToInt(endStr, len, &endValue)) {
979 end = endValue.data;

Completed in 1046 milliseconds