Searched refs:scrollOffset (Results 1 - 25 of 72) sorted by relevance

123

/external/webkit/Source/WebKit2/UIProcess/
H A DDrawingAreaProxy.cpp46 void DrawingAreaProxy::setSize(const IntSize& size, const IntSize& scrollOffset) argument
48 if (m_size == size && scrollOffset.isZero())
52 m_scrollOffset += scrollOffset;
H A DBackingStore.h71 void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DDrawingAreaProxy.h93 void setSize(const WebCore::IntSize&, const WebCore::IntSize& scrollOffset);
/external/webkit/Source/WebKit2/Shared/
H A DUpdateInfo.cpp37 encoder->encode(scrollOffset);
49 if (!decoder->decode(result.scrollOffset))
H A DUpdateInfo.h54 WebCore::IntSize scrollOffset; member in class:WebKit::UpdateInfo
/external/webkit/Source/WebKit2/UIProcess/win/
H A DBackingStoreWin.cpp83 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
102 if (scrollOffset.isZero())
106 ::ScrollDC(BitmapDC(m_bitmap.get(), 0), scrollOffset.width(), scrollOffset.height(), &winScrollRect, &winScrollRect, 0, 0);
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DBackingStoreMac.mm100 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
116 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
118 if (scrollOffset.isZero())
128 CGContextDrawLayerAtPoint(layerContext, CGPointMake(scrollOffset.width(), -m_size.height() - scrollOffset.height()), m_cgLayer.get());
138 CGPoint destination = CGPointMake(scrollRect.x() + scrollOffset.width(), scrollRect.y() + scrollOffset.height());
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DDrawingArea.h61 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
88 virtual void updateBackingStoreState(uint64_t backingStoreStateID, bool respondImmediately, const WebCore::IntSize& size, const WebCore::IntSize& scrollOffset) { } argument
H A DDrawingAreaImpl.h51 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
64 virtual void updateBackingStoreState(uint64_t backingStoreStateID, bool respondImmediately, const WebCore::IntSize&, const WebCore::IntSize& scrollOffset);
H A DChunkedUpdateDrawingArea.h43 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DDrawingAreaImpl.cpp101 void DrawingAreaImpl::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
108 m_layerTreeHost->scrollNonCompositedContents(scrollRect, scrollOffset);
140 Region movedDirtyRegionInScrollRect = intersect(translate(dirtyRegionInScrollRect, scrollOffset), scrollRect);
147 Region scrollRepaintRegion = subtract(scrollRect, translate(scrollRect, scrollOffset));
152 m_scrollOffset += scrollOffset;
268 void DrawingAreaImpl::updateBackingStoreState(uint64_t stateID, bool respondImmediately, const WebCore::IntSize& size, const WebCore::IntSize& scrollOffset) argument
280 m_webPage->scrollMainFrameIfNotAtMaxScrollPosition(scrollOffset);
589 updateInfo.scrollOffset = m_scrollOffset;
H A DLayerTreeHost.h58 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
H A DFindController.cpp187 paintRect.move(-selectedFrame->view()->scrollOffset());
237 IntPoint frameOffset(-frame->view()->scrollOffset().width(), -frame->view()->scrollOffset().height());
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKView.cpp75 void WKViewSetScrollOffsetOnNextResize(WKViewRef viewRef, WKSize scrollOffset) argument
77 toImpl(viewRef)->setScrollOffsetOnNextResize(toIntSize(scrollOffset));
H A DWKView.h75 WK_EXPORT void WKViewSetScrollOffsetOnNextResize(WKViewRef view, WKSize scrollOffset);
/external/webkit/Source/WebCore/platform/gtk/
H A DScrollViewGtk.cpp114 resetValues ? 0 : scrollOffset().width(), 0,
153 resetValues ? 0 : scrollOffset().height(), 0,
217 updateScrollbars(scrollOffset());
/external/webkit/Source/WebKit/chromium/src/
H A DWebHistoryItem.cpp156 WebPoint WebHistoryItem::scrollOffset() const function in class:WebKit::WebHistoryItem
161 void WebHistoryItem::setScrollOffset(const WebPoint& scrollOffset) argument
164 m_private->setScrollPoint(scrollOffset);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayer.h64 void setScrollOffset(IntPoint scrollOffset) { m_scrollOffset = scrollOffset; } argument
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
H A DLayerTreeHostCA.h63 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DPageClientImpl.mm142 void PageClientImpl::scrollView(const IntRect& scrollRect, const IntSize& scrollOffset)
144 NSRect clippedScrollRect = NSIntersectionRect(scrollRect, NSOffsetRect(scrollRect, -scrollOffset.width(), -scrollOffset.height()));
146 [m_wkView translateRectsNeedingDisplayInRect:clippedScrollRect by:scrollOffset];
147 [m_wkView scrollRect:clippedScrollRect by:scrollOffset];
/external/webkit/Source/WebCore/platform/
H A DScrollView.h184 IntSize scrollOffset() const { return visibleContentRect().location() - IntPoint(); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes. function in class:WebCore::ScrollView
261 newPoint = point - scrollOffset();
270 newPoint = point + scrollOffset();
/external/webkit/Source/WebCore/platform/wx/
H A DScrollViewWx.cpp183 wxPoint scrollOffset = m_data->viewStart; local
184 wxPoint orig(scrollOffset);
201 if (newScrollOffset == scrollOffset)
/external/webkit/Source/WebCore/page/win/
H A DFrameCGWin.cpp44 IntSize offset = view->scrollOffset();
/external/webkit/Source/WebCore/platform/win/
H A DPopupMenuWin.h82 int scrollOffset() const { return m_scrollOffset; } function in class:WebCore::PopupMenuWin
/external/webkit/Source/WebKit/chromium/public/
H A DWebHistoryItem.h93 WEBKIT_API WebPoint scrollOffset() const;

Completed in 348 milliseconds

123