Home
last modified time | relevance | path

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

/packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/car/
DKeyboardView.java1575 float accumY = 0; in computeCurrentVelocity() local
1594 if (accumY == 0) accumY = vel; in computeCurrentVelocity()
1595 else accumY = (accumY + vel) * .5f; in computeCurrentVelocity()
1599 mYVelocity = accumY < 0.0f ? Math.max(accumY, -maxVelocity) in computeCurrentVelocity()
1600 : Math.min(accumY, maxVelocity); in computeCurrentVelocity()