Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/widget/
DLinearSmoothScroller.java253 private int clampApplyScroll(int tmpDt, int dt) { in clampApplyScroll() argument
254 final int before = tmpDt; in clampApplyScroll()
255 tmpDt -= dt; in clampApplyScroll()
256 if (before * tmpDt <= 0) { // changed sign, reached 0 or was 0, reset in clampApplyScroll()
259 return tmpDt; in clampApplyScroll()