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

1 2 3

  /frameworks/base/core/java/android/animation/
RectEvaluator.java 33 * @param startValue The start Rect
39 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
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.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;
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 32 * @param startValue A 32-bit int value representing colors in the
41 public Object evaluate(float fraction, Object startValue, Object endValue) {
42 int startInt = (Integer) startValue;
  /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/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 95 * Linear interpolation from startValue to endValue by the given percent.
96 * Basically: ((1 - percent) * startValue) + (percent * endValue)
99 * scale value to use. if 1, use endValue, if 0, use startValue.
100 * @param startValue
104 * @return The interpolated value between startValue and endValue.
106 public static float interpolateLinear(float scale, float startValue, float endValue) {
107 if (startValue == endValue) {
108 return startValue;
111 return startValue;
116 return ((1f - scale) * startValue) + (scale * endValue)
    [all...]
  /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));
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollAnimatorNone.cpp 186 double startValue = curveIntegralAt(curve, startT);
188 return endValue - startValue;
193 double startValue = curveIntegralAt(curve, 1 - endT);
195 return endValue - startValue;
  /dalvik/vm/
Init.cpp 572 long startValue, endValue;
574 startValue = strtol(startPtr, &endPtr, 16);
577 startValue %= kNumPackedOpcodes;
583 endValue = startValue;
586 for (; startValue <= endValue; startValue++) {
588 (unsigned int) startValue);
590 gDvmJit.opList[startValue >> 3] |= 1 << (startValue & 0x7);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
calendar.cpp     [all...]
  /external/icu4c/i18n/
calendar.cpp     [all...]
  /frameworks/base/core/java/android/transition/
Transition.java 452 Object startValue = start.values.get(key);
454 if (startValue != endValue && !startValue.equals(endValue)) {
455 Log.d(LOG_TAG, " " + key + ": start(" + startValue +
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollAnimatorMac.mm 312 - (id)initWithScrollbar:(Scrollbar*)scrollbar featureToAnimate:(FeatureToAnimate)featureToAnimate animateFrom:(CGFloat)startValue animateTo:(CGFloat)endValue duration:(NSTimeInterval)duration;
317 - (id)initWithScrollbar:(Scrollbar*)scrollbar featureToAnimate:(FeatureToAnimate)featureToAnimate animateFrom:(CGFloat)startValue animateTo:(CGFloat)endValue duration:(NSTimeInterval)duration
325 _startValue = startValue;
342 - (void)setStartValue:(CGFloat)startValue
344 _startValue = startValue;
    [all...]
  /external/aac/libFDK/src/
FDK_crc.cpp 216 hCrcInfo->startValue = crcStartValue;
245 hCrcInfo->crcValue = hCrcInfo->startValue;
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
DoubleBufferTest.java 657 double startValue, int length) {
658 double value = startValue;
FloatBufferTest.java 667 int startIndex, float startValue, int length) {
668 float value = startValue;
IntBufferTest.java 643 int startIndex, int startValue, int length) {
644 int value = startValue;

Completed in 997 milliseconds

1 2 3