Home
last modified time | relevance | path

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

/packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/car/
DKeyboardView.java1574 float accumX = 0; in computeCurrentVelocity() local
1589 if (accumX == 0) accumX = vel; in computeCurrentVelocity()
1590 else accumX = (accumX + vel) * .5f; in computeCurrentVelocity()
1597 mXVelocity = accumX < 0.0f ? Math.max(accumX, -maxVelocity) in computeCurrentVelocity()
1598 : Math.min(accumX, maxVelocity); in computeCurrentVelocity()