HomeSort by relevance Sort by last modified time
    Searched refs:borderRect (Results 1 - 5 of 5) sorted by null

  /external/webkit/WebCore/rendering/
RenderReplaced.cpp 129 IntRect borderRect = IntRect(tx, ty, width(), height());
131 if (borderRect.isEmpty())
138 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
140 paintInfo.context->addRoundedRectClip(borderRect, topLeft, topRight, bottomLeft, bottomRight);
RenderWidget.cpp 240 IntRect borderRect = IntRect(tx, ty, width(), height());
242 if (borderRect.isEmpty())
249 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
251 paintInfo.context->addRoundedRectClip(borderRect, topLeft, topRight, bottomLeft, bottomRight);
RenderFrameSet.cpp 83 void RenderFrameSet::paintColumnBorder(const PaintInfo& paintInfo, const IntRect& borderRect)
85 if (!paintInfo.rect.intersects(borderRect))
93 context->fillRect(borderRect, frameSet()->hasBorderColor() ? style()->borderLeftColor() : borderFillColor(), colorSpace);
97 if (borderRect.width() >= 3) {
98 context->fillRect(IntRect(borderRect.topLeft(), IntSize(1, height())), borderStartEdgeColor(), colorSpace);
99 context->fillRect(IntRect(borderRect.topRight(), IntSize(1, height())), borderEndEdgeColor(), colorSpace);
103 void RenderFrameSet::paintRowBorder(const PaintInfo& paintInfo, const IntRect& borderRect)
105 if (!paintInfo.rect.intersects(borderRect))
113 context->fillRect(borderRect, frameSet()->hasBorderColor() ? style()->borderLeftColor() : borderFillColor(), colorSpace);
117 if (borderRect.height() >= 3)
    [all...]
RenderBoxModelObject.cpp 458 IntRect borderRect(tx, ty, w, h);
460 if (borderRect.isEmpty())
466 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
468 context->addRoundedRectClip(borderRect, includeLeftEdge ? topLeft : IntSize(),
    [all...]
RenderBox.cpp 871 IntRect borderRect = IntRect(tx, ty, width(), height());
872 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
874 paintInfo.context->addRoundedRectClip(borderRect, topLeft, topRight, bottomLeft, bottomRight);
    [all...]

Completed in 162 milliseconds