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

  /frameworks/base/core/java/android/widget/
Scroller.java 106 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
142 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
144 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
OverScroller.java 598 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
632 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
634 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
673 final float t_inf = SPLINE_TIME[index];
674 final float t_sup = SPLINE_TIME[index + 1];
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 74 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
110 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
112 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 597 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
631 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
633 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
675 final float t_inf = SPLINE_TIME[index];
676 final float t_sup = SPLINE_TIME[index + 1];
    [all...]

Completed in 60 milliseconds