HomeSort by relevance Sort by last modified time
    Searched refs:scrollOffset (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxy.cpp 46 void DrawingAreaProxy::setSize(const IntSize& size, const IntSize& scrollOffset)
48 if (m_size == size && scrollOffset.isZero())
52 m_scrollOffset += scrollOffset;
BackingStore.h 71 void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
DrawingAreaProxy.h 93 void setSize(const WebCore::IntSize&, const WebCore::IntSize& scrollOffset);
  /external/webkit/Source/WebKit2/Shared/
UpdateInfo.cpp 37 encoder->encode(scrollOffset);
49 if (!decoder->decode(result.scrollOffset))
UpdateInfo.h 54 WebCore::IntSize scrollOffset;
  /external/webkit/Source/WebKit2/UIProcess/mac/
BackingStoreMac.mm 100 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/UIProcess/win/
BackingStoreWin.cpp 83 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
102 if (scrollOffset.isZero())
106 ::ScrollDC(BitmapDC(m_bitmap.get(), 0), scrollOffset.width(), scrollOffset.height(), &winScrollRect, &winScrollRect, 0, 0);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingArea.h 61 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) { }
DrawingAreaImpl.h 51 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);
ChunkedUpdateDrawingArea.h 43 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
LayerTreeHost.h 58 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
DrawingAreaImpl.cpp 101 void DrawingAreaImpl::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
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)
280 m_webPage->scrollMainFrameIfNotAtMaxScrollPosition(scrollOffset);
589 updateInfo.scrollOffset = m_scrollOffset;
FindController.cpp 187 paintRect.move(-selectedFrame->view()->scrollOffset());
237 IntPoint frameOffset(-frame->view()->scrollOffset().width(), -frame->view()->scrollOffset().height());
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKView.cpp 75 void WKViewSetScrollOffsetOnNextResize(WKViewRef viewRef, WKSize scrollOffset)
77 toImpl(viewRef)->setScrollOffsetOnNextResize(toIntSize(scrollOffset));
WKView.h 75 WK_EXPORT void WKViewSetScrollOffsetOnNextResize(WKViewRef view, WKSize scrollOffset);
  /external/webkit/Source/WebCore/platform/gtk/
ScrollViewGtk.cpp 114 resetValues ? 0 : scrollOffset().width(), 0,
153 resetValues ? 0 : scrollOffset().height(), 0,
217 updateScrollbars(scrollOffset());
  /external/webkit/Source/WebKit/chromium/src/
WebHistoryItem.cpp 156 WebPoint WebHistoryItem::scrollOffset() const
161 void WebHistoryItem::setScrollOffset(const WebPoint& scrollOffset)
164 m_private->setScrollPoint(scrollOffset);
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
Layer.h 64 void setScrollOffset(IntPoint scrollOffset) { m_scrollOffset = scrollOffset; }
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.h 63 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.h 82 int scrollOffset() const { return m_scrollOffset; }
  /external/webkit/Source/WebKit/chromium/public/
WebHistoryItem.h 93 WEBKIT_API WebPoint scrollOffset() const;
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PageClientImpl.mm 142 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/
ScrollView.h 184 IntSize scrollOffset() const { return visibleContentRect().location() - IntPoint(); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes.
261 newPoint = point - scrollOffset();
270 newPoint = point + scrollOffset();
  /external/webkit/Source/WebCore/platform/wx/
ScrollViewWx.cpp 183 wxPoint scrollOffset = m_data->viewStart;
184 wxPoint orig(scrollOffset);
201 if (newScrollOffset == scrollOffset)
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailTabCarousel.java 244 * @param scrollOffset The offset by how far we scrolled, where 0=not scrolled, -x=scrolled by
248 public void animateAppear(int width, int scrollOffset) {
258 if (scrollOffset == Integer.MIN_VALUE) {
263 final int pixelsOfPhotoLeft = Math.round(photoHeight) + scrollOffset;

Completed in 677 milliseconds

1 2 3 4