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

  /frameworks/base/core/java/android/widget/
Scroller.java 107 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
143 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
145 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
OverScroller.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/Launcher3/src/com/android/launcher3/
LauncherScroller.java 75 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
111 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
113 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 602 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
636 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
638 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
677 final float t_inf = SPLINE_TIME[index];
678 final float t_sup = SPLINE_TIME[index + 1];
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 600 private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
634 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
636 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
678 final float t_inf = SPLINE_TIME[index];
679 final float t_sup = SPLINE_TIME[index + 1];
    [all...]

Completed in 523 milliseconds