Home | History | Annotate | Download | only in webkit

Lines Matching refs:vy

3151         int vy;
3157 vy = 0;
3160 vy = contentToViewY(cy);
3163 // vx + " " + vy + "]");
3177 mYDistanceToSlideTitleOffScreen = vy;
3179 pinScrollTo(vx, vy, true, SLIDE_TITLE_DURATION);
3185 pinScrollTo(vx, vy, false, 0);
3188 if ((mScrollX != vx && cx >= 0) || (mScrollY != vy && cy >= 0)) {
3203 int vy = contentToViewY(cy);
3204 pinScrollTo(vx, vy, true, 0);
6002 public void flingScroll(int vx, int vy) {
6003 mScroller.fling(mScrollX, mScrollY, vx, vy, 0, computeMaxScrollX(), 0,
6017 int vy = (int) mVelocityTracker.getYVelocity();
6021 vy = 0;
6029 vy = vy * 3 / 4;
6031 if ((maxX == 0 && vy == 0) || (maxY == 0 && vx == 0)) {
6043 - Math.atan2(vy, vx)));
6047 vy += currentVelocity * mLastVelY / mLastVelocity;
6049 Log.v(LOGTAG, "doFling vx= " + vx + " vy=" + vy);
6057 + " vx=" + vx + " vy=" + vy
6063 if ((mScrollX == 0 || mScrollX == maxX) && Math.abs(vx) < Math.abs(vy)) {
6066 if ((mScrollY == 0 || mScrollY == maxY) && Math.abs(vy) < Math.abs(vx)) {
6067 vy = 0;
6075 vy = 0;
6080 mLastVelY = vy;
6081 mLastVelocity = (float) Math.hypot(vx, vy);
6084 mScroller.fling(mScrollX, mScrollY, -vx, -vy, 0, maxX, 0, maxY,