Home | History | Annotate | Download | only in rendering

Lines Matching refs:colRect

2341         IntRect colRect = columnRectAt(colInfo, i);
2343 int inlineDirectionSize = isHorizontalWritingMode() ? colRect.width() : colRect.height();
2379 IntRect colRect = columnRectAt(colInfo, i);
2380 flipForWritingMode(colRect);
2381 int logicalLeftOffset = (isHorizontalWritingMode() ? colRect.x() : colRect.y()) - logicalLeftOffsetForContent();
2383 colRect.move(tx, ty);
2385 info.rect.intersect(colRect);
2392 context->clip(colRect);
2405 int blockDelta = (isHorizontalWritingMode() ? colRect.height() : colRect.width());
4063 IntRect colRect = columnRectAt(colInfo, i);
4064 int blockDelta = (isHorizontal ? colRect.height() : colRect.width());
4071 IntRect colRect = columnRectAt(colInfo, i);
4072 flipForWritingMode(colRect);
4073 int currLogicalLeftOffset = (isHorizontal ? colRect.x() : colRect.y()) - logicalLeft;
4074 int blockDelta = (isHorizontal ? colRect.height() : colRect.width());
4079 colRect.move(tx, ty);
4081 if (colRect.intersects(result.rectForPoint(x, y))) {
4088 if (result.isRectBasedTest() && !colRect.contains(result.rectForPoint(x, y)))
4468 IntRect colRect = columnRectAt(colInfo, i);
4470 IntRect gapAndColumnRect(colRect.x() - halfColGap, colRect.y(), colRect.width() + colGap, colRect.height());
4485 point.move(columnPoint.x() - colRect.x(), logicalOffset);
4490 logicalOffset += colRect.height();
4492 IntRect gapAndColumnRect(colRect.x(), colRect.y() - halfColGap, colRect.width(), colRect.height() + colGap);
4507 point.move(logicalOffset, columnPoint.y() - colRect.y());
4512 logicalOffset += colRect.width();
4537 IntRect colRect = columnRectAt(colInfo, i);
4540 int currXOffset = colRect.x() - logicalLeft;
4542 currLogicalOffset -= colRect.height();
4544 int currYOffset = colRect.y() - logicalLeft;
4546 currLogicalOffset -= colRect.width();
4548 repaintRect.intersect(colRect);