HomeSort by relevance Sort by last modified time
    Searched defs:scrollRect (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/painting/
PaintAggregator.h 44 // 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;
67 // There is a PendingUpdate if invalidateRect or scrollRect were called and
79 void scrollRect(int dx, int dy, const blink::IntRect& clipRect);
PaintAggregator.cpp 135 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.isEmpty() || !m_update.paintRects.isEmpty()
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmap_scroll.cpp 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy,
23 tmp.scrollRect(NULL, dx, dy, inval);
  /external/skia/src/core/
SkBitmap_scroll.cpp 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy,
23 tmp.scrollRect(NULL, dx, dy, inval);
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 390 void WebPluginContainerImpl::scrollRect(const WebRect& rect)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.cpp 198 IntRect scrollRect = rect;
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;
    [all...]

Completed in 528 milliseconds