Searched defs:localRepaintRect (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/svg/
H A DSVGRenderSupport.cpp182 bool SVGRenderSupport::paintInfoIntersectsRepaintRect(const FloatRect& localRepaintRect, const AffineTransform& localTransform, const PaintInfo& paintInfo) argument
185 return localRepaintRect.intersects(paintInfo.rect);
187 return localTransform.mapRect(localRepaintRect).intersects(paintInfo.rect);
/external/webkit/Source/WebCore/rendering/
H A DRenderTableSection.cpp1072 IntRect localRepaintRect = paintInfo.rect; local
1073 localRepaintRect.move(-tx, -ty);
1076 localRepaintRect.setY(height() - localRepaintRect.maxY());
1078 localRepaintRect.setX(width() - localRepaintRect.maxX());
1083 int before = (style()->isHorizontalWritingMode() ? localRepaintRect.y() : localRepaintRect.x()) - os;
1093 int after = (style()->isHorizontalWritingMode() ? localRepaintRect.maxY() : localRepaintRect
[all...]

Completed in 76 milliseconds