OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:t_inf
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/widget/
OverScroller.java
673
final float
t_inf
= SPLINE_TIME[index];
local
675
final float timeCoef =
t_inf
+ (x - x_inf) / (x_sup - x_inf) * (t_sup -
t_inf
);
918
final float
t_inf
= (float) index \/ NB_SAMPLES;
local
[
all
...]
Scroller.java
331
final float
t_inf
= (float) index / NB_SAMPLES;
local
335
velocityCoef = (d_sup - d_inf) / (t_sup -
t_inf
);
336
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);
/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 86 milliseconds