Home | History | Annotate | Download | only in webkit

Lines Matching refs:getScrollX

1426     int getScrollX() {
1427 return mWebView.getScrollX();
1746 event.setScrollX(getScrollX());
2292 b.putInt("scrollX", getScrollX());
2738 return pinScrollTo(getScrollX(), 0, true, 0);
2761 return pinScrollTo(getScrollX(), computeRealVerticalScrollRange(), true, 0);
2878 int contentX = viewToContentX(mLastTouchX + getScrollX());
3076 updateScrollCoordinates(pinLocX(getScrollX()), pinLocY(getScrollY()));
3250 final int scrollX = getScrollX();
3263 return Math.max(getScrollX(), 0);
3338 int oldX = getScrollX();
3344 mOverScrollGlow.pullGlow(getScrollX(), getScrollY(), oldX, oldY, maxX, maxY);
3743 pinScrollTo(getScrollX(), getScrollY(), false, 0);
3769 int oldX = getScrollX();
3821 if (oldX != getScrollX() || oldY != getScrollY()) {
3859 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), getScrollX(), getScrollY());
3872 return pinScrollTo(getScrollX() + dx, getScrollY() + dy, animate, animationDuration);
3880 int dx = x - getScrollX();
3888 mScroller.startScroll(getScrollX(), getScrollY(), dx, dy,
4256 canvas.translate(getScrollX(), getScrollY());
4257 canvas.clipRect(-getScrollX(), top - getScrollY(), right - getScrollX(), bottom
4397 int x = viewToContentX(mLastTouchX + getScrollX());
4620 int oldScrollX = getScrollX();
4622 setScrollXRaw(pinLocX(getScrollX()));
4624 if (oldScrollX != getScrollX() || oldScrollY != getScrollY()) {
4625 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldScrollX, oldScrollY);
5070 int offsetX = location[0] - getScrollX();
5543 Rect visibleRect = new Rect(viewToContentX(getScrollX()),
5545 viewToContentX(getScrollX() + getWidth()),
5584 int scrollX = viewToContentX(getScrollX());
5704 int contentX = viewToContentX((int) x + getScrollX());
5726 int x = viewToContentX((int) event.getX() + getScrollX());
5748 if (mInputDispatcher.postPointerEvent(ev, getScrollX(),
5783 int contentX = viewToContentX(x + getScrollX());
5818 int shiftedX = x + getScrollX();
6083 if (mScroller.springBack(getScrollX(), getScrollY(), 0,
6109 mScroller.springBack(getScrollX(), getScrollY(), 0,
6163 int x = viewToContentX(mLastTouchX + getScrollX() + mSelectDraggingOffset.x);
6223 int oldX = getScrollX();
6582 int oldScrollX = getScrollX();
6611 + " mScrollX-oldScrollX=" + (getScrollX()-oldScrollX)
6615 if (Math.abs(getScrollX() - oldScrollX) > Math.abs(xMove)) {
6645 int oldX = getScrollX();
6649 if (oldX != getScrollX() || oldY != getScrollY()) {
6650 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldX, oldY);
6658 mScroller.fling(getScrollX(), getScrollY(), vx, vy, 0, computeMaxScrollX(), 0,
6674 int scrollX = getScrollX();
6842 && contentToViewX(rect.left) >= getScrollX()
6843 && contentToViewX(rect.right) <= getScrollX() + viewWidth
6869 float oldScreenX = rect.left * actualScale - getScrollX();
7004 rect.offset(child.getLeft() - child.getScrollX(),
7007 Rect content = new Rect(viewToContentX(getScrollX()),
7009 viewToContentX(getScrollX() + getWidth()
7564 int x = Math.round(event.getX() + getScrollX());