Searched defs:outlineSize (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderLineBoxList.cpp174 bool RenderLineBoxList::anyLineIntersectsRect(RenderBoxModelObject* renderer, const IntRect& rect, int tx, int ty, bool usePrintRect, int outlineSize) const
188 int logicalTop = firstLineTop - outlineSize;
189 int logicalBottom = outlineSize + lastLineBottom;
221 int outlineSize = renderer->maximalOutlineSize(paintInfo.phase); local
222 if (!anyLineIntersectsRect(renderer, paintInfo.rect, tx, ty, usePrintRect, outlineSize))
H A DRenderTableCell.cpp257 int outlineSize = style()->outlineSize(); local
258 int left = max(borderHalfLeft(true), outlineSize);
259 int right = max(borderHalfRight(true), outlineSize);
260 int top = max(borderHalfTop(true), outlineSize);
261 int bottom = max(borderHalfBottom(true), outlineSize);
H A DRenderObject.cpp1280 int ow = outlineStyle->outlineSize();
1631 if (m_style->outlineWidth() > 0 && m_style->outlineSize() > maximalOutlineSize(PaintPhaseOutline))
1632 toRenderView(document()->renderer())->setMaximalOutlineSize(m_style->outlineSize());
1694 if (m_parent && (diff == StyleDifferenceRepaint || newStyle->outlineSize() < m_style->outlineSize()))
2479 int outlineSize = outlineStyleForRepaint()->outlineSize(); local
2481 boxShadow->adjustRectForShadow(rect, outlineSize);
2485 rect.inflate(outlineSize);
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h447 unsigned short outlineSize() const { return max(0, outlineWidth() + outlineOffset()); } function in class:WebCore::RenderStyle

Completed in 223 milliseconds