Searched refs:endValue (Results 1 - 7 of 7) 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 DRectEvaluator.java34 * @param endValue The end Rect
39 public Rect evaluate(float fraction, Rect startValue, Rect endValue) { argument
40 return new Rect(startValue.left + (int)((endValue.left - startValue.left) * fraction),
41 startValue.top + (int)((endValue.top - startValue.top) * fraction),
42 startValue.right + (int)((endValue.right - startValue.right) * fraction),
43 startValue.bottom + (int)((endValue.bottom - startValue.bottom) * fraction));
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/core/java/android/transition/
H A DTransition.java453 Object endValue = end.values.get(key);
454 if (startValue != endValue && !startValue.equals(endValue)) {
456 "), end(" + endValue +")");
/frameworks/base/tools/aapt/
H A DResourceTable.cpp1011 Res_value endValue; local
1012 if (!ResTable::stringToInt(endStr, len, &endValue)) {
1017 end = endValue.data;

Completed in 111 milliseconds