Home | History | Annotate | Download | only in webkit

Lines Matching refs:getScrollX

1461     int getScrollX() {
1462 return mWebView.getScrollX();
1787 event.setScrollX(getScrollX());
2360 b.putInt("scrollX", getScrollX());
2809 return pinScrollTo(getScrollX(), 0, true, 0);
2832 return pinScrollTo(getScrollX(), computeRealVerticalScrollRange(), true, 0);
2949 int contentX = viewToContentX(mLastTouchX + getScrollX());
3147 updateScrollCoordinates(pinLocX(getScrollX()), pinLocY(getScrollY()));
3321 final int scrollX = getScrollX();
3334 return Math.max(getScrollX(), 0);
3410 int oldX = getScrollX();
3418 mOverScrollGlow.pullGlow(getScrollX(), getScrollY(), oldX, oldY, maxX, maxY);
3821 pinScrollTo(getScrollX(), getScrollY(), false, 0);
3847 int oldX = getScrollX();
3899 if (oldX != getScrollX() || oldY != getScrollY()) {
3934 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), getScrollX(), getScrollY());
3947 return pinScrollTo(getScrollX() + dx, getScrollY() + dy, animate, animationDuration);
3955 int dx = x - getScrollX();
3963 mScroller.startScroll(getScrollX(), getScrollY(), dx, dy,
4339 canvas.translate(getScrollX(), getScrollY());
4340 canvas.clipRect(-getScrollX(), top - getScrollY(), right - getScrollX(), bottom
4480 int x = viewToContentX(mLastTouchX + getScrollX());
4750 int oldScrollX = getScrollX();
4752 setScrollXRaw(pinLocX(getScrollX()));
4754 if (oldScrollX != getScrollX() || oldScrollY != getScrollY()) {
4755 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldScrollX, oldScrollY);
5237 int offsetX = location[0] - getScrollX();
5656 Rect visibleRect = new Rect(viewToContentX(getScrollX()),
5658 viewToContentX(getScrollX() + getWidth()),
5697 int scrollX = viewToContentX(getScrollX());
5798 int contentX = viewToContentX((int) x + getScrollX());
5820 int x = viewToContentX((int) event.getX() + getScrollX());
5842 if (mInputDispatcher.postPointerEvent(ev, getScrollX(),
5871 int contentX = viewToContentX(x + getScrollX());
5912 int shiftedX = x + getScrollX();
6160 if (mScroller.springBack(getScrollX(), getScrollY(), 0,
6186 mScroller.springBack(getScrollX(), getScrollY(), 0,
6271 int x = viewToContentX(mLastTouchX + getScrollX() + mSelectOffset.x);
6334 int oldX = getScrollX();
6701 int oldScrollX = getScrollX();
6730 + " mScrollX-oldScrollX=" + (getScrollX()-oldScrollX)
6734 if (Math.abs(getScrollX() - oldScrollX) > Math.abs(xMove)) {
6764 int oldX = getScrollX();
6768 if (oldX != getScrollX() || oldY != getScrollY()) {
6769 mWebViewPrivate.onScrollChanged(getScrollX(), getScrollY(), oldX, oldY);
6778 mScroller.fling(getScrollX(), getScrollY(), vx, vy, 0, computeMaxScrollX(), 0,
6794 int scrollX = getScrollX();
6962 && contentToViewX(rect.left) >= getScrollX()
6963 && contentToViewX(rect.right) <= getScrollX() + viewWidth
6989 float oldScreenX = rect.left * actualScale - getScrollX();
7126 rect.offset(child.getLeft() - child.getScrollX(),
7129 Rect content = new Rect(viewToContentX(getScrollX()),
7131 viewToContentX(getScrollX() + getWidth()
7670 int x = Math.round(event.getX() + getScrollX());