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

  /external/webkit/Source/WebCore/rendering/
RenderFrameSet.cpp 84 void RenderFrameSet::paintColumnBorder(const PaintInfo& paintInfo, const IntRect& borderRect)
86 if (!paintInfo.rect.intersects(borderRect))
94 context->fillRect(borderRect, frameSet()->hasBorderColor() ? style()->visitedDependentColor(CSSPropertyBorderLeftColor) : borderFillColor(), colorSpace);
98 if (borderRect.width() >= 3) {
99 context->fillRect(IntRect(borderRect.location(), IntSize(1, height())), borderStartEdgeColor(), colorSpace);
100 context->fillRect(IntRect(IntPoint(borderRect.maxX() - 1, borderRect.y()), IntSize(1, height())), borderEndEdgeColor(), colorSpace);
104 void RenderFrameSet::paintRowBorder(const PaintInfo& paintInfo, const IntRect& borderRect)
106 if (!paintInfo.rect.intersects(borderRect))
114 context->fillRect(borderRect, frameSet()->hasBorderColor() ? style()->visitedDependentColor(CSSPropertyBorderLeftColor) : borde (…)
    [all...]
RenderBoxModelObject.cpp 562 RoundedIntRect RenderBoxModelObject::getBackgroundRoundedRect(const IntRect& borderRect, InlineFlowBox* box, int inlineBoxWidth, int inlineBoxHeight,
565 RoundedIntRect border = style()->getRoundedBorderFor(borderRect, includeLogicalLeftEdge, includeLogicalRightEdge);
615 IntRect borderRect(tx, ty, w, h);
616 if (borderRect.isEmpty())
620 RoundedIntRect border = getBackgroundRoundedRect(borderRect, box, inlineBoxWidth, inlineBoxHeight, includeLeftEdge, includeRightEdge);
623 context->fillRect(borderRect, bgColor, style()->colorSpace());
630 IntRect borderRect(tx, ty, w, h);
632 if (borderRect.isEmpty())
637 RoundedIntRect border = getBackgroundRoundedRect(borderRect, box, inlineBoxWidth, inlineBoxHeight, includeLeftEdge, includeRightEdge);
    [all...]
RenderWidget.cpp 278 IntRect borderRect = IntRect(tx, ty, width(), height());
280 if (borderRect.isEmpty())
285 paintInfo.context->addRoundedRectClip(style()->getRoundedBorderFor(borderRect));
RenderReplaced.cpp 139 IntRect borderRect = IntRect(tx, ty, width(), height());
141 if (borderRect.isEmpty())
146 paintInfo.context->addRoundedRectClip(style()->getRoundedBorderFor(borderRect));
RenderObject.cpp     [all...]
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 488 IntRect borderRect = rect;
489 borderRect.inflate(-3);
490 const float cx = borderRect.center().x();
491 const float cy = borderRect.center().y() - 1;
508 context->drawRect(borderRect);
512 context->drawEllipse(borderRect);
528 borderRect.inflate(-3);
529 context->drawEllipse(borderRect);
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp     [all...]
RenderStyle.h     [all...]

Completed in 163 milliseconds