Home | History | Annotate | Download | only in view

Lines Matching defs:vx

4727                             final float vx = mVelocityTracker.getXVelocity(mActivePointerId);
4729 if (!startFling(time, vx, vy)) {
4839 private boolean startFling(long time, float vx, float vy) {
4841 Log.d(LOCAL_TAG, "Considering fling: vx=" + vx + ", vy=" + vy
4848 if (-vx >= mConfigMinFlingVelocity
4850 mFlingVelocity = -vx;
4856 if (vx >= mConfigMinFlingVelocity
4858 mFlingVelocity = vx;
4865 && Math.abs(vx) < mConfigMinFlingVelocity) {
4873 && Math.abs(vx) < mConfigMinFlingVelocity) {