Home
last modified time | relevance | path

Searched refs:scrollOffset (Results 1 – 25 of 84) sorted by relevance

1234

/external/webkit/Source/WebKit2/UIProcess/win/
DBackingStoreWin.cpp83 scroll(updateInfo.scrollRect, updateInfo.scrollOffset); in incorporateUpdate()
100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) in scroll() argument
102 if (scrollOffset.isZero()) in scroll()
106 …::ScrollDC(BitmapDC(m_bitmap.get(), 0), scrollOffset.width(), scrollOffset.height(), &winScrollRec… in scroll()
/external/webkit/Source/WebKit2/UIProcess/
DDrawingAreaProxy.cpp46 void DrawingAreaProxy::setSize(const IntSize& size, const IntSize& scrollOffset) in setSize() argument
48 if (m_size == size && scrollOffset.isZero()) in setSize()
52 m_scrollOffset += scrollOffset; in setSize()
DBackingStore.h71 void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
/external/webkit/Source/WebKit2/UIProcess/mac/
DBackingStoreMac.mm100 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
116 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
118 if (scrollOffset.isZero())
128 …ContextDrawLayerAtPoint(layerContext, CGPointMake(scrollOffset.width(), -m_size.height() - scrollO…
138 …CGPoint destination = CGPointMake(scrollRect.x() + scrollOffset.width(), scrollRect.y() + scrollOf…
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DDrawingAreaImpl.cpp101 void DrawingAreaImpl::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) in scroll() argument
108 m_layerTreeHost->scrollNonCompositedContents(scrollRect, scrollOffset); in scroll()
140 …dDirtyRegionInScrollRect = intersect(translate(dirtyRegionInScrollRect, scrollOffset), scrollRect); in scroll()
147 Region scrollRepaintRegion = subtract(scrollRect, translate(scrollRect, scrollOffset)); in scroll()
152 m_scrollOffset += scrollOffset; in scroll()
268 …ateID, bool respondImmediately, const WebCore::IntSize& size, const WebCore::IntSize& scrollOffset) in updateBackingStoreState() argument
280 m_webPage->scrollMainFrameIfNotAtMaxScrollPosition(scrollOffset); in updateBackingStoreState()
589 updateInfo.scrollOffset = m_scrollOffset; in display()
DDrawingArea.h61 … virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
88 …D, bool respondImmediately, const WebCore::IntSize& size, const WebCore::IntSize& scrollOffset) { } in updateBackingStoreState() argument
DDrawingAreaImpl.h51 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
64 …reStateID, bool respondImmediately, const WebCore::IntSize&, const WebCore::IntSize& scrollOffset);
DFindController.cpp187 paintRect.move(-selectedFrame->view()->scrollOffset()); in updateFindIndicator()
237 …IntPoint frameOffset(-frame->view()->scrollOffset().width(), -frame->view()->scrollOffset().height… in rectsForTextMatches()
DChunkedUpdateDrawingArea.h43 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
DLayerTreeHost.h58 …onCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
/external/webkit/Source/WebKit2/Shared/
DUpdateInfo.cpp37 encoder->encode(scrollOffset); in encode()
49 if (!decoder->decode(result.scrollOffset)) in decode()
DUpdateInfo.h54 WebCore::IntSize scrollOffset; variable
/external/webkit/Source/WebCore/platform/gtk/
DScrollViewGtk.cpp114 resetValues ? 0 : scrollOffset().width(), 0, in setHorizontalAdjustment()
153 resetValues ? 0 : scrollOffset().height(), 0, in setVerticalAdjustment()
217 updateScrollbars(scrollOffset()); in setScrollbarModes()
/external/webkit/Source/WebKit/chromium/src/
DWebHistoryItem.cpp156 WebPoint WebHistoryItem::scrollOffset() const in scrollOffset() function in WebKit::WebHistoryItem
161 void WebHistoryItem::setScrollOffset(const WebPoint& scrollOffset) in setScrollOffset() argument
164 m_private->setScrollPoint(scrollOffset); in setScrollOffset()
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
DWKView.cpp75 void WKViewSetScrollOffsetOnNextResize(WKViewRef viewRef, WKSize scrollOffset) in WKViewSetScrollOffsetOnNextResize() argument
77 toImpl(viewRef)->setScrollOffsetOnNextResize(toIntSize(scrollOffset)); in WKViewSetScrollOffsetOnNextResize()
DWKView.h75 WK_EXPORT void WKViewSetScrollOffsetOnNextResize(WKViewRef view, WKSize scrollOffset);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
DLayer.h64 void setScrollOffset(IntPoint scrollOffset) { m_scrollOffset = scrollOffset; } in setScrollOffset() argument
/external/webkit/Source/WebCore/platform/
DScrollView.cpp169 updateScrollbars(scrollOffset()); in setScrollbarModes()
276 updateScrollbars(scrollOffset()); in setFixedLayoutSize()
289 updateScrollbars(scrollOffset()); in setUseFixedLayout()
307 updateScrollbars(scrollOffset()); in setContentsSize()
500 updateScrollbars(scrollOffset()); in windowResizerRectChanged()
734 return viewPoint + scrollOffset(); in windowToContents()
739 IntPoint viewPoint = contentsPoint - scrollOffset(); in contentsToWindow()
746 viewRect.move(scrollOffset()); in windowToContents()
753 viewRect.move(-scrollOffset()); in contentsToWindow()
1299 updateScrollbars(scrollOffset()); in wheelEvent()
DScrollView.h184 …IntSize scrollOffset() const { return visibleContentRect().location() - IntPoint(); } // Gets the … in scrollOffset() function
261 newPoint = point - scrollOffset(); in convertChildToSelf()
270 newPoint = point + scrollOffset(); in convertSelfToChild()
/external/webkit/Source/WebCore/platform/wx/
DScrollViewWx.cpp183 wxPoint scrollOffset = m_data->viewStart; in platformSetScrollPosition() local
184 wxPoint orig(scrollOffset); in platformSetScrollPosition()
201 if (newScrollOffset == scrollOffset) in platformSetScrollPosition()
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DPageClientImpl.mm142 void PageClientImpl::scrollView(const IntRect& scrollRect, const IntSize& scrollOffset)
144 …= NSIntersectionRect(scrollRect, NSOffsetRect(scrollRect, -scrollOffset.width(), -scrollOffset.hei…
146 [m_wkView translateRectsNeedingDisplayInRect:clippedScrollRect by:scrollOffset];
147 [m_wkView scrollRect:clippedScrollRect by:scrollOffset];
/external/webkit/Source/WebCore/svg/
DSVGSVGElement.cpp508 IntSize scrollOffset = view->scrollOffset(); in localCoordinateSpaceTransform() local
509 transform.translate(-scrollOffset.width(), -scrollOffset.height()); in localCoordinateSpaceTransform()
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
DLayerTreeHostCA.h63 …ollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
/external/chromium/webkit/glue/
Dglue_serialize_unittest.cc92 EXPECT_EQ(a.scrollOffset(), b.scrollOffset()); in HistoryItemExpectEqual()
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebChromeClient.h116 …virtual void scroll(const WebCore::IntSize& scrollOffset, const WebCore::IntRect& scrollRect, cons…
118 virtual void delegatedScrollRequested(const WebCore::IntPoint& scrollOffset);

1234