OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:coeffY
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/widget/
Scroller.java
453
float
coeffY
= velocity == 0 ? 1.0f : velocityY / velocity;
468
mFinalY = startY + (int) Math.round(totalDistance *
coeffY
);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java
401
float
coeffY
= velocity == 0 ? 1.0f : velocityY / velocity;
416
mFinalY = startY + Math.round(totalDistance *
coeffY
);
/packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java
437
float
coeffY
= velocity == 0 ? 1.0f : velocityY / velocity;
452
mFinalY = startY + (int) Math.round(totalDistance *
coeffY
);
Completed in 69 milliseconds