/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());
|
/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...] |
/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);
|
/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/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/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/platform/scroll/ |
ScrollAnimatorNone.cpp | 183 double startValue = curveIntegralAt(curve, startT); 185 return endValue - startValue; 190 double startValue = curveIntegralAt(curve, 1 - endT); 192 return endValue - startValue;
|
/external/chromium_org/third_party/WebKit/Source/platform/mac/ |
ScrollAnimatorMac.mm | 304 - (id)initWithScrollbar:(Scrollbar*)scrollbar featureToAnimate:(FeatureToAnimate)featureToAnimate animateFrom:(CGFloat)startValue animateTo:(CGFloat)endValue duration:(NSTimeInterval)duration; 309 - (id)initWithScrollbar:(Scrollbar*)scrollbar featureToAnimate:(FeatureToAnimate)featureToAnimate animateFrom:(CGFloat)startValue animateTo:(CGFloat)endValue duration:(NSTimeInterval)duration 317 _startValue = startValue; 334 - (void)setStartValue:(CGFloat)startValue 336 _startValue = startValue; [all...] |
/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/llvm/lib/Transforms/Vectorize/ |
LoopVectorize.cpp | 414 ReductionDescriptor() : StartValue(0), LoopExitInstr(0), 419 : StartValue(Start), LoopExitInstr(Exit), Kind(K), MinMaxKind(MK) {} 423 TrackingVH<Value> StartValue; 483 InductionInfo(Value *Start, InductionKind K) : StartValue(Start), IK(K) {} 484 InductionInfo() : StartValue(0), IK(IK_NoInduction) {} 486 TrackingVH<Value> StartValue; [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
calendar.cpp | [all...] |
/external/icu4c/i18n/ |
calendar.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
UIUtils.js | 223 var startValue = start[key]; 225 var newValue = startValue + (endValue - startValue) * complete / duration; [all...] |
/external/aac/libFDK/include/ |
FDK_crc.h | 124 USHORT startValue; /*!< CRC start value. */
|
/external/aac/libFDK/src/ |
FDK_crc.cpp | 216 hCrcInfo->startValue = crcStartValue; 245 hCrcInfo->crcValue = hCrcInfo->startValue;
|
/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;
|