HomeSort by relevance Sort by last modified time
    Searched defs:SPLINE (Results 1 - 3 of 3) sorted by null

  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 69 private static final float[] SPLINE = new float[NB_SAMPLES + 1];
89 SPLINE[i] = d;
91 SPLINE[NB_SAMPLES] = 1.0f;
273 final float d_inf = SPLINE[index];
274 final float d_sup = SPLINE[index + 1];
OverScroller.java 499 mScrollerX.mState != SplineOverScroller.SPLINE) ||
501 mScrollerY.mState != SplineOverScroller.SPLINE));
564 // Duration to complete spline component of animation
567 // Distance to travel along spline animation
580 private int mState = SPLINE;
599 private static final int SPLINE = 0;
665 * spline interpolation. The previous duration was needed to get to oldFinal.
761 mState = SPLINE;
844 if (mState == SPLINE) {
    [all...]
  /frameworks/base/core/java/android/widget/
OverScroller.java 500 mScrollerX.mState != SplineOverScroller.SPLINE) ||
502 mScrollerY.mState != SplineOverScroller.SPLINE));
565 // Duration to complete spline component of animation
568 // Distance to travel along spline animation
581 private int mState = SPLINE;
600 private static final int SPLINE = 0;
663 * spline interpolation. The previous duration was needed to get to oldFinal.
759 mState = SPLINE;
844 if (mState == SPLINE) {
    [all...]

Completed in 294 milliseconds