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

/frameworks/base/core/java/android/animation/
H A DRectEvaluator.java66 * @param startValue The start Rect
72 public Rect evaluate(float fraction, Rect startValue, Rect endValue) { argument
73 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction);
74 int top = startValue.top + (int) ((endValue.top - startValue.top) * fraction);
75 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction);
76 int bottom = 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 DPointFEvaluator.java66 * @param startValue The start PointF
72 public PointF evaluate(float fraction, PointF startValue, PointF endValue) { argument
73 float x = startValue.x + (fraction * (endValue.x - startValue.x));
74 float y = startValue.y + (fraction * (endValue.y - startValue.y));
H A DFloatArrayEvaluator.java58 * @param startValue The start value.
61 * the same index in startValue and endValue.
64 public float[] evaluate(float fraction, float[] startValue, float[] endValue) { argument
67 array = new float[startValue.length];
71 float start = startValue[i];
H A DIntArrayEvaluator.java57 * @param startValue The start value.
60 * the same index in startValue and endValue.
63 public int[] evaluate(float fraction, int[] startValue, int[] endValue) { argument
66 array = new int[startValue.length];
69 int start = startValue[i];
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.java45 * @param startValue A 32-bit int value representing colors in the
54 public Object evaluate(float fraction, Object startValue, Object endValue) { argument
55 int startInt = (Integer) startValue;
H A DPathKeyframes.java149 private static float interpolate(float fraction, float startValue, float endValue) { argument
150 float diff = endValue - startValue;
151 return startValue + (diff * fraction);
/frameworks/base/core/java/android/view/
H A DRenderNodeAnimator.java303 public void setStartValue(float startValue) { argument
305 nSetStartValue(mNativePtr.get(), startValue);
505 private static native void nSetStartValue(long nativePtr, float startValue); argument
H A DViewPropertyAnimator.java944 * @param startValue The starting value of the property
947 private void animatePropertyBy(int constantName, float startValue, float byValue) { argument
971 NameValuesHolder nameValuePair = new NameValuesHolder(constantName, startValue, byValue);
/frameworks/base/core/java/android/transition/
H A DTransitionUtils.java182 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) { argument
183 startValue.getValues(mTempStartValues);
H A DChangeImageTransform.java55 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
H A DTransition.java713 Object startValue = start.values.get(key);
715 if (startValue != endValue && !startValue.equals(endValue)) {
716 Log.d(LOG_TAG, " " + key + ": start(" + startValue +
/frameworks/base/core/jni/
H A Dandroid_view_RenderNodeAnimator.cpp142 static void setStartValue(JNIEnv* env, jobject clazz, jlong animatorPtr, jfloat startValue) { argument
144 animator->setStartValue(startValue);
/frameworks/base/libs/hwui/
H A DAnimator.cpp304 float startValue, float finalValue)
308 setStartValue(startValue);
303 RevealAnimator(int centerX, int centerY, float startValue, float finalValue) argument
H A DAnimator.h192 float startValue, float finalValue);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp1019 Res_value startValue; local
1020 if (!ResTable::stringToInt(startStr, len, &startValue)) {
1025 start = startValue.data;

Completed in 199 milliseconds