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

  /frameworks/base/core/java/android/widget/
OverScroller.java 672 final float t_sup = SPLINE_TIME[index + 1]; local
673 final float timeCoef = t_inf + (x - x_inf) / (x_sup - x_inf) * (t_sup - t_inf);
925 final float t_sup = (float) (index + 1) \/ NB_SAMPLES; local
    [all...]
Scroller.java 320 final float t_sup = (float) (index + 1) / NB_SAMPLES; local
323 velocityCoef = (d_sup - d_inf) / (t_sup - t_inf);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 675 final float t_sup = SPLINE_TIME[index + 1]; local
676 final float timeCoef = t_inf + (x - x_inf) / (x_sup - x_inf) * (t_sup - t_inf);
921 final float t_sup = (float) (index + 1) \/ NB_SAMPLES; local
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 676 final float t_sup = SPLINE_TIME[index + 1]; local
677 final float timeCoef = t_inf + (x - x_inf) / (x_sup - x_inf) * (t_sup - t_inf);
921 final float t_sup = (float) (index + 1) \/ NB_SAMPLES; local
    [all...]
Scroller.java 272 final float t_sup = (float) (index + 1) / NB_SAMPLES; local
275 final float distanceCoef = d_inf + (t - t_inf) / (t_sup - t_inf) * (d_sup - d_inf);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 304 final float t_sup = (float) (index + 1) / NB_SAMPLES; local
307 velocityCoef = (d_sup - d_inf) / (t_sup - t_inf);

Completed in 589 milliseconds