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

  /frameworks/base/core/java/android/widget/
Scroller.java 105 private static final float[] SPLINE_POSITION = new float[NB_SAMPLES + 1];
130 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
144 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
321 final float d_inf = SPLINE_POSITION[index];
322 final float d_sup = SPLINE_POSITION[index + 1];
OverScroller.java 597 private static final float[] SPLINE_POSITION = new float[NB_SAMPLES + 1];
620 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
634 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 73 private static final float[] SPLINE_POSITION = new float[NB_SAMPLES + 1];
98 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
112 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
305 final float d_inf = SPLINE_POSITION[index];
306 final float d_sup = SPLINE_POSITION[index + 1];
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 596 private static final float[] SPLINE_POSITION = new float[NB_SAMPLES + 1];
619 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
633 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
    [all...]

Completed in 236 milliseconds