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

1 2

  /frameworks/base/core/java/android/animation/
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;
  /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 64 final float startValue = mFirstRun ? mOriginalFromValue :
70 // TODO: We don't really need to do the animation if startValue == toValue, but
78 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;
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
GStreamerGWorld.cpp 148 gint64 startValue, stopValue;
149 gst_query_parse_segment(query, &rate, &format, &startValue, &stopValue);
151 GstEvent* event = gst_event_new_new_segment(FALSE, rate, format, startValue, stopValue, position);
  /dalvik/vm/
Init.cpp 569 long startValue, endValue;
571 startValue = strtol(startPtr, &endPtr, 16);
574 startValue %= kNumPackedOpcodes;
580 endValue = startValue;
583 for (; startValue <= endValue; startValue++) {
585 (unsigned int) startValue);
587 gDvmJit.opList[startValue >> 3] |= 1 << (startValue & 0x7);
    [all...]
  /external/icu4c/i18n/
calendar.cpp     [all...]
  /external/aac/libFDK/src/
FDK_crc.cpp 216 hCrcInfo->startValue = crcStartValue;
245 hCrcInfo->crcValue = hCrcInfo->startValue;
  /external/apache-harmony/nio/src/test/java/common/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;
LongBufferTest.java 650 int startIndex, long startValue, int length) {
651 long value = startValue;
ShortBufferTest.java 630 int startIndex, short startValue, int length) {
631 short value = startValue;
CharBufferTest.java 849 char startValue, int length) {
850 char value = startValue;
ByteBufferTest.java     [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
inspector.js 879 var startValue = start[key];
880 var newValue = cubicInOut(complete, startValue, endValue - startValue, duration);
    [all...]
  /external/icu4c/i18n/unicode/
calendar.h     [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp     [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]

Completed in 889 milliseconds

1 2