HomeSort by relevance Sort by last modified time
    Searched refs:endValue (Results 1 - 21 of 21) sorted by null

  /frameworks/base/core/java/android/animation/
FloatEvaluator.java 28 * 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) {
40 return startFloat + fraction * (endValue.floatValue() - startFloat);
IntEvaluator.java 28 * 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) {
40 return (int)(startInt + fraction * (endValue - startInt));
TypeEvaluator.java 33 * 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);
ArgbEvaluator.java 34 * @param endValue A 32-bit int value representing colors in the
41 public Object evaluate(float fraction, Object startValue, Object endValue) {
48 int endInt = (Integer) endValue;
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 79 int endValue = 0;
84 endValue |= ((value & 0x7F) << 7 * nr);// cut away left most bit
87 return endValue;
94 int endValue = 0;
98 endValue |= (tmp << i * 8);
100 return endValue;
107 short endValue = 0;
111 endValue |= (tmp << i * 8);
113 return endValue;
120 char endValue = 0
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
SliceFunction.java 40 Value endValue = args[2];
43 int end = endValue.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.
102 * @param endValue
104 * @return The interpolated value between startValue and endValue.
106 public static float interpolateLinear(float scale, float startValue, float endValue) {
107 if (startValue == endValue) {
114 return endValue;
116 return ((1f - scale) * startValue) + (scale * endValue);
120 * Linear interpolation from startValue to endValue by the given percent
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
CustomEvaluator.java 86 public Object evaluate(float fraction, Object startValue, Object endValue) {
88 XYHolder endXY = (XYHolder) endValue;
  /dalvik/vm/
Init.cpp 136 dvmFprintf(stderr, " -Xjitop:hexopvalue[-endvalue]"
137 "[,hexopvalue[-endvalue]]*\n");
569 long startValue, endValue;
577 endValue = strtol(endPtr+1, &endPtr, 16);
578 endValue %= kNumPackedOpcodes;
580 endValue = startValue;
583 for (; startValue <= endValue; startValue++) {
    [all...]
  /external/icu4c/i18n/
calendar.cpp     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
inspector.js 877 var endValue = end[key];
880 var newValue = cubicInOut(complete, startValue, endValue - startValue, duration);
883 style.setProperty(key, endValue + (key in propertyUnit ? propertyUnit[key] : defaultUnit));
    [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...]
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 272 milliseconds