HomeSort by relevance Sort by last modified time
    Searched refs:startValue (Results 26 - 50 of 82) sorted by null

12 3 4

  /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));
  /frameworks/base/core/java/android/view/
RenderNodeAnimator.java 303 public void setStartValue(float startValue) {
305 nSetStartValue(mNativePtr.get(), startValue);
505 private static native void nSetStartValue(long nativePtr, float startValue);
ViewPropertyAnimator.java     [all...]
  /frameworks/base/core/java/android/transition/
TransitionUtils.java 182 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
183 startValue.getValues(mTempStartValues);
ChangeImageTransform.java 55 public Matrix evaluate(float fraction, Matrix startValue, Matrix endValue) {
Transition.java     [all...]
  /frameworks/base/core/jni/
android_view_RenderNodeAnimator.cpp 142 static void setStartValue(JNIEnv* env, jobject clazz, jlong animatorPtr, jfloat startValue) {
144 animator->setStartValue(startValue);
  /frameworks/base/libs/hwui/
Animator.cpp 302 float startValue, float finalValue)
306 setStartValue(startValue);
Animator.h 194 float startValue, float finalValue);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
UnivariateRealSolverImpl.java 163 * Solve for a zero in the given interval, start at startValue.
171 * @param startValue the start value to use
181 public double solve(int maxEval, UnivariateRealFunction function, double min, double max, double startValue)
  /external/icu/icu4c/source/i18n/
calendar.cpp     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Calendar.java     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
MultiStartUnivariateRealOptimizer.java 314 final double min, final double max, final double startValue)
  /external/aac/libFDK/src/
FDK_crc.cpp 216 hCrcInfo->startValue = crcStartValue;
245 hCrcInfo->crcValue = hCrcInfo->startValue;
  /frameworks/support/design/src/android/support/design/widget/
CollapsingTextHelper.java 567 private static float lerp(float startValue, float endValue, float fraction,
572 return AnimationUtils.lerp(startValue, endValue, fraction);
  /frameworks/support/v4/java/android/support/v4/widget/
MaterialProgressDrawable.java 309 private int evaluateColorChange(float fraction, int startValue, int endValue) {
310 int startInt = (Integer) startValue;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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;
  /external/icu/icu4c/source/i18n/unicode/
calendar.h     [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
FilmstripView.java 378 private void runAnimation(final ValueAnimator animator, final float startValue,
381 if (startValue == targetValue) {
386 animator.setFloatValues(startValue, targetValue);
    [all...]
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 

Completed in 667 milliseconds

12 3 4