Home | History | Annotate | Download | only in webkit

Lines Matching refs:getScrollY

1430     int getScrollY() {
1431 return mWebView.getScrollY();
1699 final boolean canScrollBackward = (getScrollY() > 0);
1700 final boolean canScrollForward = ((getScrollY() - maxScrollY) > 0);
1729 final boolean canScrollBackward = (getScrollY() > 0);
1730 final boolean canScrollForward = ((getScrollY() - maxScrollY) > 0);
1747 event.setScrollY(getScrollY());
1963 return Math.max(getTitleHeight() - Math.max(0, getScrollY()),
2293 b.putInt("scrollY", getScrollY());
2879 int contentY = viewToContentY(mLastTouchY + getScrollY());
3076 updateScrollCoordinates(pinLocX(getScrollX()), pinLocY(getScrollY()));
3280 final int scrollY = getScrollY();
3293 return Math.max(getScrollY() - getTitleHeight(), 0);
3305 if (getScrollY() < 0) {
3306 t -= getScrollY();
3339 int oldY = getScrollY();
3344 mOverScrollGlow.pullGlow(getScrollX(), getScrollY(), oldX, oldY, maxX, maxY);
3743 pinScrollTo(getScrollX(), getScrollY(), false, 0);
3770 int oldY = getScrollY();
3821 if (oldX != getScrollX() || oldY != getScrollY()) {
3859 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), getScrollX(), getScrollY());
3872 return pinScrollTo(getScrollX() + dx, getScrollY() + dy, animate, animationDuration);
3881 int dy = y - getScrollY();
3888 mScroller.startScroll(getScrollX(), getScrollY(), dx, dy,
4256 canvas.translate(getScrollX(), getScrollY());
4257 canvas.clipRect(-getScrollX(), top - getScrollY(), right - getScrollX(), bottom
4258 - getScrollY(), Region.Op.DIFFERENCE);
4398 int y = viewToContentY(mLastTouchY + getScrollY());
4621 int oldScrollY = getScrollY();
4623 setScrollYRaw(pinLocY(getScrollY()));
4624 if (oldScrollX != getScrollX() || oldScrollY != getScrollY()) {
4625 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldScrollX, oldScrollY);
5071 int offsetY = location[1] - getScrollY();
5544 viewToContentY(getScrollY()),
5546 viewToContentY(getScrollY() + getViewHeightWithTitle()));
5592 int scrollY = viewToContentY(getScrollY());
5705 int contentY = viewToContentY((int) y + getScrollY());
5727 int y = viewToContentY((int) event.getY() + getScrollY());
5749 getScrollY() - getTitleHeight(), mZoomManager.getInvScale())) {
5784 int contentY = viewToContentY(y + getScrollY());
5817 int shiftedY = y - getTitleHeight() + getScrollY();
6083 if (mScroller.springBack(getScrollX(), getScrollY(), 0,
6109 mScroller.springBack(getScrollX(), getScrollY(), 0,
6166 int y = viewToContentY(mLastTouchY + getScrollY() + mSelectDraggingOffset.y);
6224 int oldY = getScrollY();
6583 int oldScrollY = getScrollY();
6612 + " mScrollY-oldScrollY=" + (getScrollY()-oldScrollY)
6618 if (Math.abs(getScrollY() - oldScrollY) > Math.abs(yMove)) {
6646 int oldY = getScrollY();
6649 if (oldX != getScrollX() || oldY != getScrollY()) {
6650 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldX, oldY);
6658 mScroller.fling(getScrollX(), getScrollY(), vx, vy, 0, computeMaxScrollX(), 0,
6675 int scrollY = getScrollY();
6844 && contentToViewY(rect.top) >= getScrollY()
6845 && contentToViewY(rect.bottom) <= getScrollY() + viewHeight;
6883 - getScrollY();
7005 child.getTop() - child.getScrollY());
7008 viewToContentY(getScrollY()),
7011 viewToContentY(getScrollY() + getViewHeightWithTitle()));
7563 int y = Math.round(event.getY() - getTitleHeight() + getScrollY());