Home
last modified time | relevance | path

Searched refs:totalDistance (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
DScroller.java455 double totalDistance = getSplineFlingDistance(velocity); in fling() local
456 mDistance = (int) (totalDistance * Math.signum(velocity)); in fling()
463 mFinalX = startX + (int) Math.round(totalDistance * coeffX); in fling()
468 mFinalY = startY + (int) Math.round(totalDistance * coeffY); in fling()
DOverScroller.java760 double totalDistance = 0.0; in fling() local
764 totalDistance = getSplineFlingDistance(velocity); in fling()
767 mSplineDistance = (int) (totalDistance * Math.signum(velocity)); in fling()
833 final double totalDistance = getSplineFlingDistance(velocity); in startAfterEdge() local
834 if (totalDistance > Math.abs(overDistance)) { in startAfterEdge()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java645 int totalDistance = Math.abs(endHeight - startHeight); in calculateTransformationAmount() local
646 float amount = (float) progress / (float) totalDistance; in calculateTransformationAmount()