Home | History | Annotate | Download | only in rendering

Lines Matching defs:repaintRect

1681         LayoutRect repaintRect;
1683 repaintRect = LayoutRect(repaintLogicalLeft, repaintLogicalTop, repaintLogicalRight - repaintLogicalLeft, repaintLogicalBottom - repaintLogicalTop);
1685 repaintRect = LayoutRect(repaintLogicalTop, repaintLogicalLeft, repaintLogicalBottom - repaintLogicalTop, repaintLogicalRight - repaintLogicalLeft);
1688 adjustRectForColumns(repaintRect);
1690 repaintRect.inflate(maximalOutlineSize(PaintPhaseOutline));
1694 repaintRect.move(-scrolledContentOffset());
1697 repaintRect.intersect(LayoutRect(LayoutPoint(), size()));
1701 if (!repaintRect.isEmpty()) {
1702 repaintRectangle(repaintRect); // We need to do a partial repaint of our content.
1704 repaintRectangle(reflectedRect(repaintRect));
5694 LayoutRect repaintRect = r;
5698 repaintRect.move(colRect.x() - logicalLeftOffset, - static_cast<int>(startColumn) * colHeight);
5700 repaintRect.move(- static_cast<int>(startColumn) * colHeight, colRect.y() - logicalLeftOffset);
5703 repaintRect.move(0, colRect.y() - startColumn * colHeight - beforeBorderPadding);
5705 repaintRect.move(colRect.x() - startColumn * colHeight - beforeBorderPadding, 0);
5707 repaintRect.intersect(colRect);
5708 result.unite(repaintRect);