Searched refs:startValue (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DRectEvaluator.java33 * @param startValue The start 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
[all...]
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/transition/
H A DTransition.java452 Object startValue = start.values.get(key);
454 if (startValue != endValue && !startValue.equals(endValue)) {
455 Log.d(LOG_TAG, " " + key + ": start(" + startValue +
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java859 * @param startValue The starting value of the property
862 private void animatePropertyBy(int constantName, float startValue, float byValue) { argument
886 NameValuesHolder nameValuePair = new NameValuesHolder(constantName, startValue, byValue);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp991 Res_value startValue; local
992 if (!ResTable::stringToInt(startStr, len, &startValue)) {
997 start = startValue.data;

Completed in 163 milliseconds