HomeSort by relevance Sort by last modified time
    Searched refs:endValue (Results 1 - 18 of 18) 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());
  /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 129 dvmFprintf(stderr, " -Xjitop:hexopvalue[-endvalue]"
130 "[,hexopvalue[-endvalue]]*\n");
559 long startValue, endValue;
567 endValue = strtol(endPtr+1, &endPtr, 16);
568 endValue %= kNumPackedOpcodes;
570 endValue = startValue;
573 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...]
  /prebuilt/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 460 milliseconds