Home
last modified time | relevance | path

Searched refs:units (Results 1 – 2 of 2) sorted by relevance

/core/core/src/main/java/androidx/core/view/
DVelocityTrackerCompat.java251 @NonNull VelocityTracker tracker, int units, float maxVelocity) { in computeCurrentVelocity() argument
252 tracker.computeCurrentVelocity(units, maxVelocity); in computeCurrentVelocity()
255 fallback.computeCurrentVelocity(units, maxVelocity); in computeCurrentVelocity()
263 public static void computeCurrentVelocity(@NonNull VelocityTracker tracker, int units) { in computeCurrentVelocity() argument
264 VelocityTrackerCompat.computeCurrentVelocity(tracker, units, Float.MAX_VALUE); in computeCurrentVelocity()
DVelocityTrackerFallback.java82 void computeCurrentVelocity(int units) { in computeCurrentVelocity() argument
83 computeCurrentVelocity(units, Float.MAX_VALUE); in computeCurrentVelocity()
87 void computeCurrentVelocity(int units, float maxVelocity) { in computeCurrentVelocity() argument
88 mLastComputedVelocity = getCurrentVelocity() * units; in computeCurrentVelocity()