Searched refs:endValue (Results 1 - 17 of 17) 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 DRectEvaluator.java67 * @param endValue The end 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.bottom) * fraction);
H A DPointFEvaluator.java67 * @param endValue The end 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.java59 * @param endValue The end value.
61 * the same index in startValue and endValue.
64 public float[] evaluate(float fraction, float[] startValue, float[] endValue) { argument
72 float end = endValue[i];
H A DIntArrayEvaluator.java58 * @param endValue The end value.
60 * the same index in startValue and endValue.
63 public int[] evaluate(float fraction, int[] startValue, int[] endValue) { argument
70 int end = endValue[i];
H A DArgbEvaluator.java47 * @param endValue A 32-bit int value representing colors in the
54 public Object evaluate(float fraction, Object startValue, Object endValue) { argument
61 int endInt = (Integer) endValue;
H A DPathKeyframes.java149 private static float interpolate(float fraction, float startValue, float endValue) { argument
150 float diff = endValue - startValue;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DFlingAnimationUtils.java73 * @param endValue the end value of the animator
76 public void apply(Animator animator, float currValue, float endValue, float velocity) { argument
77 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
86 * @param endValue the end value of the animator
89 public void apply(ViewPropertyAnimator animator, float currValue, float endValue, argument
91 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
100 * @param endValue the end value of the animator
105 public void apply(Animator animator, float currValue, float endValue, floa argument
124 apply(ViewPropertyAnimator animator, float currValue, float endValue, float velocity, float maxDistance) argument
132 getProperties(float currValue, float endValue, float velocity, float maxDistance) argument
172 applyDismissing(Animator animator, float currValue, float endValue, float velocity, float maxDistance) argument
192 applyDismissing(ViewPropertyAnimator animator, float currValue, float endValue, float velocity, float maxDistance) argument
200 getDismissingProperties(float currValue, float endValue, float velocity, float maxDistance) argument
[all...]
H A DSpeedBumpView.java94 float endValue = nowVisible ? 1.0f : 0.0f;
96 .alpha(endValue)
98 .scaleX(endValue)
99 .scaleY(endValue)
H A DStackScrollerDecorView.java81 float endValue = nowVisible ? 1.0f : 0.0f;
90 .alpha(endValue)
/frameworks/base/core/java/android/transition/
H A DTransitionUtils.java182 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) { argument
184 endValue.getValues(mTempEndValues);
H A DChangeImageTransform.java55 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
H A DTransition.java714 Object endValue = end.values.get(key);
715 if (startValue != endValue && !startValue.equals(endValue)) {
717 "), end(" + endValue + ")");
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DSlideKitkat.java265 float terminalValue, float endValue, int finalVisibility) {
269 mEndValue = endValue;
264 SlideAnimatorListener(View view, Property<View, Float> prop, float terminalValue, float endValue, int finalVisibility) argument
/frameworks/base/tools/aapt/
H A DResourceTable.cpp1039 Res_value endValue; local
1040 if (!ResTable::stringToInt(endStr, len, &endValue)) {
1045 end = endValue.data;

Completed in 184 milliseconds