Home | History | Annotate | Download | only in rendering

Lines Matching defs:layerBounds

1484         IntRect layerBounds = IntRect(absPos.x() + scrollXOffset(), absPos.y() + scrollYOffset(), box->clientWidth(), box->clientHeight());
1486 IntRect r = getRectToExpose(layerBounds, exposeRect, alignX, alignY);
1491 xOffset = max(0, min(scrollWidth() - layerBounds.width(), xOffset));
1492 yOffset = max(0, min(scrollHeight() - layerBounds.height(), yOffset));
2660 IntRect layerBounds, damageRect, clipRectToApply, outlineRect;
2661 calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect, localPaintFlags & PaintLayerTemporaryClipRects);
2662 int x = layerBounds.x();
2663 int y = layerBounds.y();
2687 bool shouldPaint = intersectsDamageRect(layerBounds, damageRect, rootLayer) && m_hasVisibleContent && isSelfPaintingLayer();
3107 IntRect layerBounds;
3111 calculateRects(rootLayer, hitTestRect, layerBounds, bgRect, fgRect, outlineRect, useTemporaryClipRects, IncludeOverlayScrollbarSize);
3161 if (hitTestContents(request, tempResult, layerBounds, hitTestPoint, HitTestDescendants) &&
3190 if (hitTestContents(request, tempResult, layerBounds, hitTestPoint, HitTestSelf) &&
3204 bool RenderLayer::hitTestContents(const HitTestRequest& request, HitTestResult& result, const IntRect& layerBounds, const IntPoint& hitTestPoint, HitTestFilter hitTestFilter) const
3207 layerBounds.x() - renderBoxX(),
3208 layerBounds.y() - renderBoxY(),
3497 void RenderLayer::calculateRects(const RenderLayer* rootLayer, const IntRect& paintDirtyRect, IntRect& layerBounds,
3513 layerBounds = IntRect(x, y, width(), height());
3542 IntRect overflow = layerBounds;
3545 IntRect shadowRect = layerBounds;
3555 backgroundRect.intersect(layerBounds);
3563 IntRect layerBounds, backgroundRect, foregroundRect, outlineRect;
3564 calculateRects(clippingRootLayer, renderView->documentRect(), layerBounds, backgroundRect, foregroundRect, outlineRect);
3572 IntRect layerBounds, backgroundRect, foregroundRect, outlineRect;
3573 calculateRects(clippingRootLayer, renderView->documentRect(), layerBounds, backgroundRect, foregroundRect, outlineRect);
3607 bool RenderLayer::intersectsDamageRect(const IntRect& layerBounds, const IntRect& damageRect, const RenderLayer* rootLayer) const
3620 IntRect b = layerBounds;