scrollOffset 41 Source/core/dom/ElementRareData.cpp IntSize scrollOffset; scrollOffset 1791 Source/core/frame/FrameView.cpp repaintRect.move(-scrollOffset()); scrollOffset 2362 Source/core/frame/FrameView.cpp LayoutSize offset = scrollOffset(); scrollOffset 2364 Source/core/frame/FrameView.cpp if (offset != scrollOffset()) { scrollOffset 2412 Source/core/frame/FrameView.cpp updateScrollbars(scrollOffset()); scrollOffset 233 Source/core/html/forms/TextFieldInputType.cpp IntSize scrollOffset(!renderTextControl->style()->isLeftToRightDirection() ? innerScrollableArea->scrollWidth() : 0, 0); scrollOffset 234 Source/core/html/forms/TextFieldInputType.cpp innerScrollableArea->scrollToOffset(scrollOffset, ScrollOffsetClamped); scrollOffset 135 Source/core/inspector/InspectorOverlay.cpp quad += mainView->scrollOffset(); scrollOffset 149 Source/core/inspector/InspectorOverlay.cpp boundingBox.move(mainView->scrollOffset()); scrollOffset 485 Source/core/page/SpatialNavigation.cpp LayoutSize offset = frame->view()->scrollOffset(); scrollOffset 511 Source/core/page/SpatialNavigation.cpp rect.move((-frame->view()->scrollOffset())); scrollOffset 791 Source/core/rendering/RenderBox.cpp box.move(view()->frameView()->scrollOffset()); scrollOffset 908 Source/core/rendering/RenderBox.cpp return layer()->scrollableArea()->scrollOffset(); scrollOffset 302 Source/core/rendering/RenderBoxModelObject.cpp IntSize scrollOffset = containingBlock->layer()->scrollableArea()->adjustedScrollOffset(); scrollOffset 303 Source/core/rendering/RenderBoxModelObject.cpp stickyLocation -= scrollOffset; scrollOffset 1005 Source/core/rendering/RenderLayer.cpp IntSize scrollOffset = parent()->renderBox()->scrolledContentOffset(); scrollOffset 1006 Source/core/rendering/RenderLayer.cpp localPoint -= scrollOffset; scrollOffset 352 Source/core/rendering/RenderLayerScrollableArea.cpp if (scrollOffset() == toIntSize(newScrollOffset)) scrollOffset 560 Source/core/rendering/RenderLayerScrollableArea.cpp void RenderLayerScrollableArea::scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping clamp) scrollOffset 562 Source/core/rendering/RenderLayerScrollableArea.cpp IntSize newScrollOffset = clamp == ScrollOffsetClamped ? clampScrollOffset(scrollOffset) : scrollOffset; scrollOffset 759 Source/core/rendering/RenderLayerScrollableArea.cpp IntSize RenderLayerScrollableArea::clampScrollOffset(const IntSize& scrollOffset) const scrollOffset 764 Source/core/rendering/RenderLayerScrollableArea.cpp int x = std::max(std::min(scrollOffset.width(), maxX), 0); scrollOffset 765 Source/core/rendering/RenderLayerScrollableArea.cpp int y = std::max(std::min(scrollOffset.height(), maxY), 0); scrollOffset 115 Source/core/rendering/RenderLayerScrollableArea.h IntSize scrollOffset() const { return m_scrollOffset; } scrollOffset 120 Source/core/rendering/RenderLayerScrollableArea.h void scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping = ScrollOffsetUnclamped); scrollOffset 193 Source/core/rendering/RenderLayerScrollableArea.h void setScrollOffset(const IntSize& scrollOffset) { m_scrollOffset = scrollOffset; } scrollOffset 108 Source/core/rendering/RenderPart.cpp LayoutPoint contentOffset = LayoutPoint(borderLeft() + paddingLeft(), borderTop() + paddingTop()) - childFrameView->scrollOffset(); scrollOffset 142 Source/core/rendering/RenderView.cpp int scrollTop = frameView->scrollOffset().height(); scrollOffset 253 Source/core/rendering/RenderView.cpp transformState.move(-frame()->view()->scrollOffset()); scrollOffset 277 Source/core/rendering/RenderView.cpp offset = -m_frameView->scrollOffset(); scrollOffset 695 Source/core/rendering/compositing/CompositedLayerMapping.cpp IntSize scrollOffset = renderBox->scrolledContentOffset(); scrollOffset 697 Source/core/rendering/compositing/CompositedLayerMapping.cpp graphicsLayerParentLocation = scrollOrigin - scrollOffset; scrollOffset 512 Source/core/svg/SVGSVGElement.cpp LayoutSize scrollOffset = view->scrollOffset(); scrollOffset 513 Source/core/svg/SVGSVGElement.cpp scrollOffset.scale(zoomFactor); scrollOffset 514 Source/core/svg/SVGSVGElement.cpp transform.translate(-scrollOffset.width(), -scrollOffset.height()); scrollOffset 149 Source/platform/graphics/GraphicsLayerTest.cpp virtual void setScrollOffset(const IntPoint& scrollOffset) OVERRIDE { m_scrollPosition = scrollOffset; } scrollOffset 130 Source/platform/scroll/ScrollView.cpp updateScrollbars(scrollOffset()); scrollOffset 218 Source/platform/scroll/ScrollView.cpp updateScrollbars(scrollOffset()); scrollOffset 324 Source/platform/scroll/ScrollView.cpp updateScrollbars(scrollOffset()); scrollOffset 575 Source/platform/scroll/ScrollView.cpp return viewPoint + scrollOffset(); scrollOffset 580 Source/platform/scroll/ScrollView.cpp IntPoint viewPoint = contentsPoint - scrollOffset(); scrollOffset 587 Source/platform/scroll/ScrollView.cpp viewRect.move(scrollOffset()); scrollOffset 594 Source/platform/scroll/ScrollView.cpp viewRect.move(-scrollOffset()); scrollOffset 601 Source/platform/scroll/ScrollView.cpp return viewPoint + scrollOffset(); scrollOffset 606 Source/platform/scroll/ScrollView.cpp IntPoint viewPoint = contentsPoint - scrollOffset(); scrollOffset 613 Source/platform/scroll/ScrollView.cpp viewRect.move(scrollOffset()); scrollOffset 620 Source/platform/scroll/ScrollView.cpp viewRect.move(-scrollOffset()); scrollOffset 704 Source/platform/scroll/ScrollView.cpp updateScrollbars(scrollOffset()); scrollOffset 816 Source/platform/scroll/ScrollView.cpp updateScrollbars(scrollOffset()); scrollOffset 968 Source/platform/scroll/ScrollView.cpp ScrollbarTheme::theme()->paintOverhangShadows(context, scrollOffset(), horizontalOverhangRect, verticalOverhangRect, dirtyRect); scrollOffset 1123 Source/platform/scroll/ScrollView.cpp updateScrollbars(scrollOffset()); scrollOffset 146 Source/platform/scroll/ScrollView.h IntSize scrollOffset() const { return toIntSize(visibleContentRect().location()); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes. scrollOffset 211 Source/platform/scroll/ScrollView.h newPoint = point - scrollOffset(); scrollOffset 220 Source/platform/scroll/ScrollView.h newPoint = point + scrollOffset(); scrollOffset 48 Source/platform/scroll/ScrollbarThemeMacCommon.h virtual void paintOverhangShadows(GraphicsContext*, const IntSize& scrollOffset, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) OVERRIDE; scrollOffset 83 Source/web/FullscreenController.cpp m_exitFullscreenScrollOffset = m_webViewImpl->mainFrame()->scrollOffset(); scrollOffset 105 Source/web/ScrollbarGroup.cpp if (m_horizontalScrollbar && m_horizontalScrollbar->scrollOffset() != offset.x()) scrollOffset 107 Source/web/ScrollbarGroup.cpp else if (m_verticalScrollbar && m_verticalScrollbar->scrollOffset() != offset.y()) scrollOffset 171 Source/web/ScrollbarGroup.cpp int x = m_horizontalScrollbar ? m_horizontalScrollbar->scrollOffset() : 0; scrollOffset 172 Source/web/ScrollbarGroup.cpp int y = m_verticalScrollbar ? m_verticalScrollbar->scrollOffset() : 0; scrollOffset 543 Source/web/WebFrameImpl.cpp return view->scrollOffset(); scrollOffset 91 Source/web/WebFrameImpl.h virtual WebSize scrollOffset() const OVERRIDE; scrollOffset 128 Source/web/WebHistoryItem.cpp void WebHistoryItem::setScrollOffset(const WebPoint& scrollOffset) scrollOffset 130 Source/web/WebHistoryItem.cpp m_private->setScrollPoint(scrollOffset); scrollOffset 81 Source/web/WebPluginScrollbarImpl.cpp void WebPluginScrollbarImpl::setScrollOffset(int scrollOffset) scrollOffset 83 Source/web/WebPluginScrollbarImpl.cpp m_scrollOffset = scrollOffset; scrollOffset 55 Source/web/WebPluginScrollbarImpl.h int scrollOffset() { return m_scrollOffset; } scrollOffset 1027 Source/web/WebViewImpl.cpp IntSize scrollOffset; scrollOffset 1029 Source/web/WebViewImpl.cpp scrollOffset = mainFrame()->scrollOffset(); scrollOffset 1033 Source/web/WebViewImpl.cpp const int absoluteSourceX = source.x + scrollOffset.width(); scrollOffset 1049 Source/web/WebViewImpl.cpp ASSERT(scrollOffset.width() + newX + newWidth <= maxSize.width); scrollOffset 2525 Source/web/WebViewImpl.cpp textboxRectInDocumentCoordinates.move(mainFrame()->scrollOffset()); scrollOffset 2527 Source/web/WebViewImpl.cpp caretInDocumentCoordinates.move(mainFrame()->scrollOffset()); scrollOffset 2681 Source/web/WebViewImpl.cpp IntPoint scrollOffset(mainFrame()->scrollOffset().width, mainFrame()->scrollOffset().height); scrollOffset 2682 Source/web/WebViewImpl.cpp setPageScaleFactor(scaleFactor, scrollOffset); scrollOffset 2902 Source/web/WebViewImpl.cpp m_savedScrollOffset = mainFrame()->scrollOffset(); scrollOffset 3806 Source/web/WebViewImpl.cpp WebSize scrollOffset = mainFrame()->scrollOffset(); scrollOffset 3807 Source/web/WebViewImpl.cpp WebPoint scrollPoint(scrollOffset.width, scrollOffset.height); scrollOffset 3817 Source/web/WebViewImpl.cpp WebSize webScrollOffset = mainFrame()->scrollOffset(); scrollOffset 3818 Source/web/WebViewImpl.cpp IntPoint scrollOffset(webScrollOffset.width + scrollDelta.width, webScrollOffset.height + scrollDelta.height); scrollOffset 3819 Source/web/WebViewImpl.cpp updateMainFrameScrollPosition(scrollOffset, false); scrollOffset 3823 Source/web/WebViewImpl.cpp WebSize scrollOffset = mainFrame()->scrollOffset(); scrollOffset 3824 Source/web/WebViewImpl.cpp scrollOffset.width += scrollDelta.width; scrollOffset 3825 Source/web/WebViewImpl.cpp scrollOffset.height += scrollDelta.height; scrollOffset 3827 Source/web/WebViewImpl.cpp WebPoint scrollPoint(scrollOffset.width, scrollOffset.height); scrollOffset 76 Source/web/tests/ProgrammaticScrollTest.cpp EXPECT_EQ(200, webViewImpl->mainFrameImpl()->scrollOffset().height); scrollOffset 103 Source/web/tests/ProgrammaticScrollTest.cpp EXPECT_EQ(400, webViewImpl->mainFrameImpl()->scrollOffset().height); scrollOffset 1986 Source/web/tests/WebFrameTest.cpp const WebSize scrollOffset, scrollOffset 2006 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(WebSize(), webViewHelper.webViewImpl()->mainFrame()->scrollOffset()); scrollOffset 2012 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->setPageScaleFactor(initialPageScaleFactor, WebPoint(scrollOffset.width, scrollOffset.height)); scrollOffset 2014 Source/web/tests/WebFrameTest.cpp const WebSize expectedScrollOffset = webViewHelper.webViewImpl()->mainFrame()->scrollOffset(); scrollOffset 2017 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(expectedScrollOffset, webViewHelper.webViewImpl()->mainFrame()->scrollOffset()); scrollOffset 2020 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(expectedScrollOffset, webViewHelper.webViewImpl()->mainFrame()->scrollOffset()); scrollOffset 2031 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->mainFrame()->setScrollOffset(scrollOffset); scrollOffset 2033 Source/web/tests/WebFrameTest.cpp WebCore::IntPoint anchorPoint = WebCore::IntPoint(scrollOffset) + WebCore::IntPoint(viewportSize.width / 2, 0); scrollOffset 2041 Source/web/tests/WebFrameTest.cpp WebCore::IntPoint newAnchorPoint = WebCore::IntPoint(webViewHelper.webViewImpl()->mainFrame()->scrollOffset()) + WebCore::IntPoint(viewportSize.height / 2, 0); scrollOffset 2057 Source/web/tests/WebFrameTest.cpp const WebSize scrollOffset(0, 50); scrollOffset 2062 Source/web/tests/WebFrameTest.cpp url, initialPageScaleFactor, scrollOffset, viewportSize, shouldScaleRelativeToViewportWidth); scrollOffset 2070 Source/web/tests/WebFrameTest.cpp const WebSize scrollOffset(0, 200); scrollOffset 2075 Source/web/tests/WebFrameTest.cpp url, initialPageScaleFactor, scrollOffset, viewportSize, shouldScaleRelativeToViewportWidth); scrollOffset 2083 Source/web/tests/WebFrameTest.cpp const WebSize scrollOffset(200, 400); scrollOffset 2088 Source/web/tests/WebFrameTest.cpp url, initialPageScaleFactor, scrollOffset, viewportSize, shouldScaleRelativeToViewportWidth); scrollOffset 2711 Source/web/tests/WebFrameTest.cpp WebSize previousOffset = webViewHelper.webViewImpl()->mainFrame()->scrollOffset(); scrollOffset 2717 Source/web/tests/WebFrameTest.cpp ASSERT_EQ(previousOffset, webViewHelper.webViewImpl()->mainFrame()->scrollOffset()); scrollOffset 2723 Source/web/tests/WebFrameTest.cpp ASSERT_EQ(previousOffset, webViewHelper.webViewImpl()->mainFrame()->scrollOffset()); scrollOffset 779 Source/web/tests/WebViewTest.cpp EXPECT_EQ(0, webViewImpl->mainFrame()->scrollOffset().width); scrollOffset 780 Source/web/tests/WebViewTest.cpp EXPECT_EQ(0, webViewImpl->mainFrame()->scrollOffset().height); scrollOffset 785 Source/web/tests/WebViewTest.cpp EXPECT_EQ(116, webViewImpl->mainFrame()->scrollOffset().width); scrollOffset 786 Source/web/tests/WebViewTest.cpp EXPECT_EQ(84, webViewImpl->mainFrame()->scrollOffset().height); scrollOffset 797 Source/web/tests/WebViewTest.cpp EXPECT_EQ(0, webViewImpl->mainFrame()->scrollOffset().width); scrollOffset 798 Source/web/tests/WebViewTest.cpp EXPECT_EQ(0, webViewImpl->mainFrame()->scrollOffset().height); scrollOffset 819 Source/web/tests/WebViewTest.cpp EXPECT_EQ(0, webViewImpl->mainFrame()->scrollOffset().width); scrollOffset 820 Source/web/tests/WebViewTest.cpp EXPECT_EQ(0, webViewImpl->mainFrame()->scrollOffset().height); scrollOffset 825 Source/web/tests/WebViewTest.cpp EXPECT_EQ(116, webViewImpl->mainFrame()->scrollOffset().width); scrollOffset 826 Source/web/tests/WebViewTest.cpp EXPECT_EQ(84, webViewImpl->mainFrame()->scrollOffset().height); scrollOffset 845 Source/web/tests/WebViewTest.cpp EXPECT_EQ(116, webViewImpl->mainFrame()->scrollOffset().width); scrollOffset 846 Source/web/tests/WebViewTest.cpp EXPECT_EQ(84, webViewImpl->mainFrame()->scrollOffset().height); scrollOffset 170 public/web/WebFrame.h virtual WebSize scrollOffset() const = 0; scrollOffset 80 public/web/WebHistoryItem.h BLINK_EXPORT WebPoint scrollOffset() const;