Searched refs:startValue (Results 1 - 6 of 6) 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>,
32 * @param startValue The start value; should be of type <code>float</code> or
38 public Float evaluate(float fraction, Number startValue, Number endValue) { argument
39 float startFloat = startValue.floatValue();
H A DIntEvaluator.java28 * where <code>x0</code> is <code>startValue</code>, <code>x1</code> is <code>endValue</code>,
32 * @param startValue The start value; should be of type <code>int</code> or
38 public Integer evaluate(float fraction, Integer startValue, Integer endValue) { argument
39 int startInt = startValue;
H A DTypeEvaluator.java33 * where <code>x0</code> is <code>startValue</code>, <code>x1</code> is <code>endValue</code>,
37 * @param startValue The start value.
42 public T evaluate(float fraction, T startValue, T endValue); argument
H A DArgbEvaluator.java32 * @param startValue A 32-bit int value representing colors in the
41 public Object evaluate(float fraction, Object startValue, Object endValue) { argument
42 int startInt = (Integer) startValue;
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java802 * @param startValue The starting value of the property
805 private void animatePropertyBy(int constantName, float startValue, float byValue) { argument
829 NameValuesHolder nameValuePair = new NameValuesHolder(constantName, startValue, byValue);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp953 Res_value startValue; local
954 if (!ResTable::stringToInt(startStr, len, &startValue)) {
959 start = startValue.data;

Completed in 153 milliseconds