HomeSort by relevance Sort by last modified time
    Searched refs:startValue (Results 1 - 25 of 65) sorted by null

1 2 3

  /frameworks/base/core/java/android/animation/
RectEvaluator.java 66 * @param startValue The start Rect
72 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
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)
    [all...]
FloatEvaluator.java 28 * 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) {
39 float startFloat = startValue.floatValue();
IntEvaluator.java 28 * 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) {
39 int startInt = startValue;
PointFEvaluator.java 66 * @param startValue The start PointF
72 public PointF evaluate(float fraction, PointF startValue, PointF endValue) {
73 float x = startValue.x + (fraction * (endValue.x - startValue.x));
74 float y = startValue.y + (fraction * (endValue.y - startValue.y));
FloatArrayEvaluator.java 58 * @param startValue The start value.
61 * the same index in startValue and endValue.
64 public float[] evaluate(float fraction, float[] startValue, float[] endValue) {
67 array = new float[startValue.length];
71 float start = startValue[i];
IntArrayEvaluator.java 57 * @param startValue The start value.
60 * the same index in startValue and endValue.
63 public int[] evaluate(float fraction, int[] startValue, int[] endValue) {
66 array = new int[startValue.length];
69 int start = startValue[i];
TypeEvaluator.java 33 * 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);
ArgbEvaluator.java 45 * @param startValue A 32-bit int value representing colors in the
54 public Object evaluate(float fraction, Object startValue, Object endValue) {
55 int startInt = (Integer) startValue;
PathKeyframes.java 149 private static float interpolate(float fraction, float startValue, float endValue) {
150 float diff = endValue - startValue;
151 return startValue + (diff * fraction);
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
PathEvaluator.java 28 public PathPoint evaluate(float t, PathPoint startValue, PathPoint endValue) {
32 x = oneMinusT * oneMinusT * oneMinusT * startValue.mX +
36 y = oneMinusT * oneMinusT * oneMinusT * startValue.mY +
41 x = startValue.mX + t * (endValue.mX - startValue.mX);
42 y = startValue.mY + t * (endValue.mY - startValue.mY);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
SliceFunction.java 39 Value startValue = args[1];
42 int start = startValue.asNumber();
65 || startValue.isPartiallyEscaped() || endValue.isPartiallyEscaped());
  /packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java 65 final float startValue = mFirstRun ? mOriginalFromValue :
71 // TODO: We don't really need to do the animation if startValue == toValue, but
79 mAnimator.setFloatValues(startValue, toValue);
  /packages/apps/Launcher3/src/com/android/launcher3/
InterruptibleInOutAnimator.java 65 final float startValue = mFirstRun ? mOriginalFromValue :
71 // TODO: We don't really need to do the animation if startValue == toValue, but
79 mAnimator.setFloatValues(startValue, toValue);
  /external/aac/libFDK/include/
FDK_crc.h 124 USHORT startValue; /*!< CRC start value. */
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
CustomEvaluator.java 86 public Object evaluate(float fraction, Object startValue, Object endValue) {
87 XYHolder startXY = (XYHolder) startValue;
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 364 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
365 return new Rect(interpolate(startValue.left, endValue.left, fraction),
366 interpolate(startValue.top, endValue.top, fraction),
367 interpolate(startValue.right, endValue.right, fraction),
368 interpolate(startValue.bottom, endValue.bottom, fraction));
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DynamicListView.java 457 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
458 return new Rect(interpolate(startValue.left, endValue.left, fraction),
459 interpolate(startValue.top, endValue.top, fraction),
460 interpolate(startValue.right, endValue.right, fraction),
461 interpolate(startValue.bottom, endValue.bottom, fraction));
  /frameworks/base/core/java/android/view/
RenderNodeAnimator.java 303 public void setStartValue(float startValue) {
305 nSetStartValue(mNativePtr.get(), startValue);
505 private static native void nSetStartValue(long nativePtr, float startValue);
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimatorNone.cpp 181 double startValue = curveIntegralAt(curve, startT);
183 return endValue - startValue;
188 double startValue = curveIntegralAt(curve, 1 - endT);
190 return endValue - startValue;
  /frameworks/base/core/java/android/transition/
TransitionUtils.java 182 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
183 startValue.getValues(mTempStartValues);
  /frameworks/base/core/jni/
android_view_RenderNodeAnimator.cpp 142 static void setStartValue(JNIEnv* env, jobject clazz, jlong animatorPtr, jfloat startValue) {
144 animator->setStartValue(startValue);
  /frameworks/base/libs/hwui/
Animator.cpp 304 float startValue, float finalValue)
308 setStartValue(startValue);
Animator.h 192 float startValue, float finalValue);
  /external/chromium_org/third_party/icu/source/i18n/
calendar.cpp     [all...]
  /external/icu/icu4c/source/i18n/
calendar.cpp     [all...]

Completed in 339 milliseconds

1 2 3