Searched refs:outlineWidth (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGContainer.cpp135 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth() && style()->visibility() == VISIBLE) {
H A DRenderSVGImage.cpp116 bool drawsOutline = style()->outlineWidth() && (childPaintInfo.phase == PaintPhaseOutline || childPaintInfo.phase == PaintPhaseSelfOutline);
H A DRenderSVGPath.cpp213 bool drawsOutline = style()->outlineWidth() && (childPaintInfo.phase == PaintPhaseOutline || childPaintInfo.phase == PaintPhaseSelfOutline);
H A DRenderSVGRoot.cpp191 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth() && isVisible)
/external/webkit/Source/WebCore/rendering/
H A DRenderImage.cpp365 unsigned short outlineWidth = areaElementStyle->outlineWidth(); local
366 if (!outlineWidth)
369 paintInfo.context->drawFocusRing(path, outlineWidth,
H A DRenderInline.h130 virtual IntRect rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth);
H A DRenderReplaced.cpp113 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth())
H A DRenderInline.cpp1022 IntRect RenderInline::rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth) argument
1024 IntRect r(RenderBoxModelObject::rectWithOutlineForRepaint(repaintContainer, outlineWidth));
1027 r.unite(curr->rectWithOutlineForRepaint(repaintContainer, outlineWidth));
1412 int ow = styleToUse->outlineWidth();
H A DRenderObject.cpp1015 context->drawFocusRing(focusRingRects, style->outlineWidth(), style->outlineOffset(), style->visitedDependentColor(CSSPropertyOutlineColor));
1039 int ow = styleToUse->outlineWidth();
1338 IntRect RenderObject::rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth) argument
1341 r.inflate(outlineWidth);
1631 if (m_style->outlineWidth() > 0 && m_style->outlineSize() > maximalOutlineSize(PaintPhaseOutline))
H A DRenderBlock.h565 virtual IntRect rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth);
H A DRenderObject.h641 virtual IntRect rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth);
H A DRenderBlock.cpp5755 IntRect RenderBlock::rectWithOutlineForRepaint(RenderBoxModelObject* repaintContainer, int outlineWidth) argument
5757 IntRect r(RenderBox::rectWithOutlineForRepaint(repaintContainer, outlineWidth));
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMCSS.h208 - (NSString *)outlineWidth;
209 - (void)setOutlineWidth:(NSString *)outlineWidth;
H A DDOMCSS.mm907 - (NSString *)outlineWidth
912 - (void)setOutlineWidth:(NSString *)outlineWidth
914 [self setProperty:@"outline-width" value:outlineWidth priority:@""];
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h447 unsigned short outlineSize() const { return max(0, outlineWidth() + outlineOffset()); }
448 unsigned short outlineWidth() const function in class:WebCore::RenderStyle
454 bool hasOutline() const { return outlineWidth() > 0 && outlineStyle() > BHIDDEN; }
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp659 gPropertyWrappers->append(new PropertyWrapper<unsigned short>(CSSPropertyOutlineWidth, &RenderStyle::outlineWidth, &RenderStyle::setOutlineWidth));
/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp1285 return zoomAdjustedPixelValue(style->outlineWidth(), style.get(), primitiveValueCache);
H A DCSSStyleSelector.cpp3890 HANDLE_INHERIT_COND(CSSPropertyOutlineWidth, outlineWidth, OutlineWidth)
4991 m_style->setOutlineWidth(m_parentStyle->outlineWidth());

Completed in 393 milliseconds