HomeSort by relevance Sort by last modified time
    Searched defs:scrollRect (Results 1 - 7 of 7) 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 WebCore::IntRect scrollRect;
67 // There is a PendingUpdate if invalidateRect or scrollRect were called and
79 void scrollRect(int dx, int dy, const WebCore::IntRect& clipRect);
PaintAggregator.cpp 133 damagedRect.setY(scrollRect.y());
134 damagedRect.setHeight(scrollRect.height());
136 damagedRect.setX(scrollRect.x());
139 damagedRect.setX(scrollRect.maxX() + dx);
144 damagedRect.setX(scrollRect.x());
145 damagedRect.setWidth(scrollRect.width());
147 damagedRect.setY(scrollRect.y());
150 damagedRect.setY(scrollRect.maxY() + dy);
156 return intersection(scrollRect, damagedRect);
169 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 371 void WebPluginContainerImpl::scrollRect(int dx, int dy, const WebRect& rect)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.cpp 356 IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + width() - borderRight() - m_vBar->width(),
360 m_vBar->setFrameRect(scrollRect);
735 IntRect scrollRect = rect;
736 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
737 repaintRectangle(scrollRect);
RenderLayer.cpp     [all...]

Completed in 481 milliseconds