Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderLayer.cpp1485 …IntRect exposeRect = IntRect(rect.x() + scrollXOffset(), rect.y() + scrollYOffset(), rect.width(),… in scrollTo() local
1486 IntRect r = getRectToExpose(layerBounds, exposeRect, alignX, alignY); in scrollTo()
1545 IntRect RenderLayer::getRectToExpose(const IntRect &visibleRect, const IntRect &exposeRect, const S… in scrollTo() argument
1549 IntRect exposeRectX(exposeRect.x(), visibleRect.y(), exposeRect.width(), visibleRect.height()); in scrollTo()
1551 if (intersectWidth == exposeRect.width() || intersectWidth >= MIN_INTERSECT_FOR_REVEAL) in scrollTo()
1568 …if (scrollX == alignToClosestEdge && exposeRect.maxX() > visibleRect.maxX() && exposeRect.width() … in scrollTo()
1576 x = exposeRect.maxX() - visibleRect.width(); in scrollTo()
1578 x = exposeRect.x() + (exposeRect.width() - visibleRect.width()) / 2; in scrollTo()
1580 x = exposeRect.x(); in scrollTo()
1584 IntRect exposeRectY(visibleRect.x(), exposeRect.y(), visibleRect.width(), exposeRect.height()); in scrollTo()
[all …]
DRenderLayer.h252 …IntRect getRectToExpose(const IntRect& visibleRect, const IntRect& exposeRect, const ScrollAlignme…