Home | History | Annotate | Download | only in ui

Lines Matching defs:vy

1094             int vy = (int) (velocityY + 0.5f);
1096 return mPositionController.flingPage(vx, vy);
1112 boolean fastEnough = (Math.abs(vy) > escapeVelocity)
1113 && (Math.abs(vy) > Math.abs(vx))
1114 && ((vy > 0) == (centerY > getHeight() / 2))
1117 vy = Math.min(vy, maxVelocity);
1118 int duration = mPositionController.flingFilmY(mTouchBoxIndex, vy);
1120 mPositionController.setPopFromTop(vy < 0);