Home | History | Annotate | Download | only in view

Lines Matching defs:vy

4593                             final float vy = mVelocityTracker.getYVelocity(mActivePointerId);
4594 if (!startFling(time, vx, vy)) {
4704 private boolean startFling(long time, float vx, float vy) {
4706 Log.d(LOCAL_TAG, "Considering fling: vx=" + vx + ", vy=" + vy
4714 && Math.abs(vy) < mConfigMinFlingVelocity) {
4722 && Math.abs(vy) < mConfigMinFlingVelocity) {
4729 if (-vy >= mConfigMinFlingVelocity
4731 mFlingVelocity = -vy;
4737 if (vy >= mConfigMinFlingVelocity
4739 mFlingVelocity = vy;