Searched refs:exposeRect (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DScrollAlignment.cpp59 LayoutRect ScrollAlignment::getRectToExpose(const LayoutRect& visibleRect, const LayoutRect& exposeRect, const ScrollAlignment& alignX, const ScrollAlignment& alignY) argument
63 LayoutRect exposeRectX(exposeRect.x(), visibleRect.y(), exposeRect.width(), visibleRect.height());
65 if (intersectWidth == exposeRect.width() || intersectWidth >= MIN_INTERSECT_FOR_REVEAL) {
84 // (1) exposeRect to the right of and smaller than visibleRect
85 // (2) exposeRect to the left of and larger than visibleRect
86 if ((exposeRect.maxX() > visibleRect.maxX() && exposeRect.width() < visibleRect.width())
87 || (exposeRect.maxX() < visibleRect.maxX() && exposeRect
[all...]
H A DScrollAlignment.h67 static LayoutRect getRectToExpose(const LayoutRect& visibleRect, const LayoutRect& exposeRect, const ScrollAlignment& alignX, const ScrollAlignment& alignY);
H A DRenderListBox.cpp157 layer()->scrollableArea()->exposeRect(rect, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignToEdgeIfNeeded);
H A DRenderLayerScrollableArea.h167 LayoutRect exposeRect(const LayoutRect&, const ScrollAlignment& alignX, const ScrollAlignment& alignY);
H A DRenderBox.cpp457 newRect = layer()->scrollableArea()->exposeRect(rect, alignX, alignY);
466 LayoutRect exposeRect = ScrollAlignment::getRectToExpose(viewRect, rect, alignX, alignY); local
468 int xOffset = roundToInt(exposeRect.x());
469 int yOffset = roundToInt(exposeRect.y());
H A DRenderLayerScrollableArea.cpp1381 LayoutRect RenderLayerScrollableArea::exposeRect(const LayoutRect& rect, const ScrollAlignment& alignX, const ScrollAlignment& alignY) function in class:blink::RenderLayerScrollableArea

Completed in 468 milliseconds