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

  /frameworks/base/core/java/android/widget/
Scroller.java 327 int totalDistance = (int) ((velocity * velocity) / (2 * mDeceleration));
335 mFinalX = startX + Math.round(totalDistance * mCoeffX);
340 mFinalY = startY + Math.round(totalDistance * mCoeffY);
  /external/webkit/WebCore/svg/
SVGAnimationElement.cpp 340 float totalDistance = 0;
347 totalDistance += distance;
350 if (!totalDistance)
355 keyTimesForPaced[n] = keyTimesForPaced[n - 1] + keyTimesForPaced[n] / totalDistance;

Completed in 863 milliseconds