Home | History | Annotate | Download | only in rendering

Lines Matching defs:ow

973     int ow = style() ? style()->outlineSize() : 0;
984 IntRect r(-ow + left, -ow + top, boundingBox.width() + ow * 2, boundingBox.height() + ow * 2);
1005 if (ow) {
1008 IntRect childRect = curr->rectWithOutlineForRepaint(repaintContainer, ow);
1014 IntRect contRect = continuation()->rectWithOutlineForRepaint(repaintContainer, ow);
1412 int ow = styleToUse->outlineWidth();
1425 l - ow,
1426 t - (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? ow : 0),
1428 b + (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? ow : 0),
1431 (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? ow : -ow),
1432 (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? ow : -ow));
1437 t - (lastline.isEmpty() || lastline.maxX() < thisline.maxX() || (thisline.maxX() - 1) <= lastline.x() ? ow : 0),
1438 r + ow,
1439 b + (nextline.isEmpty() || nextline.maxX() <= thisline.maxX() || (thisline.maxX() - 1) <= nextline.x() ? ow : 0),
1442 (lastline.isEmpty() || lastline.maxX() < thisline.maxX() || (thisline.maxX() - 1) <= lastline.x() ? ow : -ow),
1443 (nextline.isEmpty() || nextline.maxX() <= thisline.maxX() || (thisline.maxX() - 1) <= nextline.x() ? ow : -ow));
1447 l - ow,
1448 t - ow,
1449 min(r+ow, (lastline.isEmpty() ? 1000000 : tx + lastline.x())),
1452 ow,
1453 (!lastline.isEmpty() && tx + lastline.x() + 1 < r + ow) ? -ow : ow);
1457 max(lastline.isEmpty() ? -1000000 : tx + lastline.maxX(), l - ow),
1458 t - ow,
1459 r + ow,
1462 (!lastline.isEmpty() && l - ow < tx + lastline.maxX()) ? -ow : ow,
1463 ow);
1468 l - ow,
1470 min(r + ow, !nextline.isEmpty() ? tx + nextline.x() + 1 : 1000000),
1471 b + ow,
1473 ow,
1474 (!nextline.isEmpty() && tx + nextline.x() + 1 < r + ow) ? -ow : ow);
1478 max(!nextline.isEmpty() ? tx + nextline.maxX() : -1000000, l - ow),
1480 r + ow,
1481 b + ow,
1483 (!nextline.isEmpty() && l - ow < tx + nextline.maxX()) ? -ow : ow,
1484 ow);