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

  /frameworks/base/core/java/android/widget/
OverScroller.java 596 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
630 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
632 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
671 final float t_inf = SPLINE_TIME[index];
672 final float t_sup = SPLINE_TIME[index + 1];
    [all...]
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;
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 599 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
633 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
635 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
674 final float t_inf = SPLINE_TIME[index];
675 final float t_sup = SPLINE_TIME[index + 1];
    [all...]
  /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...]
  /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;

Completed in 36 milliseconds