Searched defs:scrollRect (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/painting/
H A DPaintAggregator.h44 // This structure describes an aggregation of invalidateRect and scrollRect
45 // calls. If |scrollRect| is non-empty, then that rect should be scrolled
47 // then those rects should be repainted. If |scrollRect| and |paintRects|
55 // Returns the rect damaged by scrolling within |scrollRect| by
63 blink::IntRect scrollRect; member in struct:blink::PaintAggregator::PendingUpdate
67 // There is a PendingUpdate if invalidateRect or scrollRect were called and
79 void scrollRect(int dx, int dy, const blink::IntRect& clipRect);
H A DPaintAggregator.cpp135 damagedRect.setY(scrollRect.y());
136 damagedRect.setHeight(scrollRect.height());
138 damagedRect.setX(scrollRect.x());
141 damagedRect.setX(scrollRect.maxX() + dx);
146 damagedRect.setX(scrollRect.x());
147 damagedRect.setWidth(scrollRect.width());
149 damagedRect.setY(scrollRect.y());
152 damagedRect.setY(scrollRect.maxY() + dy);
158 return intersection(scrollRect, damagedRect);
171 return !m_update.scrollRect
244 void PaintAggregator::scrollRect(int dx, int dy, const IntRect& clipRect) function in class:blink::PaintAggregator
337 IntRect scrollRect = m_update.scrollRect; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, function in class:SkBitmap
23 tmp.scrollRect(NULL, dx, dy, inval);
/external/skia/src/core/
H A DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, function in class:SkBitmap
23 tmp.scrollRect(NULL, dx, dy, inval);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPluginContainerImpl.cpp390 void WebPluginContainerImpl::scrollRect(const WebRect& rect) function in class:blink::WebPluginContainerImpl
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerScrollableArea.cpp198 IntRect scrollRect = rect; local
204 scrollRect.move(verticalScrollbarStart(0, box().width()), box().borderTop());
206 scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
208 if (scrollRect.isEmpty())
211 LayoutRect paintInvalidationRect = scrollRect;

Completed in 278 milliseconds