HomeSort by relevance Sort by last modified time
    Searched refs:startValue (Results 1 - 25 of 27) 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);
  /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 559 long startValue, endValue;
561 startValue = strtol(startPtr, &endPtr, 16);
564 startValue %= kNumPackedOpcodes;
570 endValue = startValue;
573 for (; startValue <= endValue; startValue++) {
575 (unsigned int) startValue);
577 gDvmJit.opList[startValue >> 3] |= 1 << (startValue & 0x7);
    [all...]
  /external/icu4c/i18n/
calendar.cpp     [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 683 * @param startValue The starting value of the property
686 private void animatePropertyBy(int constantName, float startValue, float byValue) {
710 NameValuesHolder nameValuePair = new NameValuesHolder(constantName, startValue, byValue);
    [all...]
  /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...]
  /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...]
  /prebuilt/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 

Completed in 866 milliseconds

1 2