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

  /frameworks/base/core/java/android/widget/
OverScroller.java 674 final float t_inf = SPLINE_TIME[index]; local
676 final float timeCoef = t_inf + (x - x_inf) / (x_sup - x_inf) * (t_sup - t_inf);
923 final float t_inf = (float) index \/ NB_SAMPLES; local
    [all...]
Scroller.java 320 final float t_inf = (float) index / NB_SAMPLES; local
324 velocityCoef = (d_sup - d_inf) / (t_sup - t_inf);
325 distanceCoef = d_inf + (t - t_inf) * velocityCoef;
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 677 final float t_inf = SPLINE_TIME[index]; local
679 final float timeCoef = t_inf + (x - x_inf) / (x_sup - x_inf) * (t_sup - t_inf);
923 final float t_inf = (float) index \/ NB_SAMPLES; local
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 678 final float t_inf = SPLINE_TIME[index]; local
680 final float timeCoef = t_inf + (x - x_inf) / (x_sup - x_inf) * (t_sup - t_inf);
923 final float t_inf = (float) index \/ NB_SAMPLES; local
    [all...]
Scroller.java 272 final float t_inf = (float) index / NB_SAMPLES; local
276 final float distanceCoef = d_inf + (t - t_inf) / (t_sup - t_inf) * (d_sup - d_inf);
  /external/chromium_org/ui/gfx/android/
scroller.cc 111 const float t_inf = static_cast<float>(index) / NUM_SAMPLES; local
115 *velocity_coef = (d_sup - d_inf) / (t_sup - t_inf);
116 *distance_coef = d_inf + (t - t_inf) * *velocity_coef;
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 304 final float t_inf = (float) index / NB_SAMPLES; local
308 velocityCoef = (d_sup - d_inf) / (t_sup - t_inf);
309 distanceCoef = d_inf + (t - t_inf) * velocityCoef;

Completed in 343 milliseconds