Home
last modified time | relevance | path

Searched refs:exposeRect (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderLayer.cpp1301 …IntRect exposeRect = IntRect(rect.x() + scrollXOffset(), rect.y() + scrollYOffset(), rect.width(),… in scrollRectToVisible() local
1302 IntRect r = getRectToExpose(layerBounds, exposeRect, alignX, alignY); in scrollRectToVisible()
1353 IntRect RenderLayer::getRectToExpose(const IntRect &visibleRect, const IntRect &exposeRect, const S… in getRectToExpose() argument
1357 IntRect exposeRectX(exposeRect.x(), visibleRect.y(), exposeRect.width(), visibleRect.height()); in getRectToExpose()
1359 if (intersectWidth == exposeRect.width() || intersectWidth >= MIN_INTERSECT_FOR_REVEAL) in getRectToExpose()
1376 …if (scrollX == alignToClosestEdge && exposeRect.right() > visibleRect.right() && exposeRect.width(… in getRectToExpose()
1384 x = exposeRect.right() - visibleRect.width(); in getRectToExpose()
1386 x = exposeRect.x() + (exposeRect.width() - visibleRect.width()) / 2; in getRectToExpose()
1388 x = exposeRect.x(); in getRectToExpose()
1392 IntRect exposeRectY(visibleRect.x(), exposeRect.y(), visibleRect.width(), exposeRect.height()); in getRectToExpose()
[all …]
DRenderLayer.h252 …IntRect getRectToExpose(const IntRect& visibleRect, const IntRect& exposeRect, const ScrollAlignme…