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

  /external/webkit/Source/WebCore/rendering/
RenderLineBoxList.h 70 bool anyLineIntersectsRect(RenderBoxModelObject*, const IntRect&, int tx, int ty, bool usePrintRect = false, int outlineSize = 0) const;
RenderLineBoxList.cpp 174 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);
222 if (!anyLineIntersectsRect(renderer, paintInfo.rect, tx, ty, usePrintRect, outlineSize))
RenderTableCell.cpp 257 int outlineSize = style()->outlineSize();
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);
    [all...]
RenderObject.cpp     [all...]
RenderReplaced.cpp 402 r.inflate(style()->outlineSize());
RenderBoxModelObject.cpp 302 } else if (diff == StyleDifferenceRepaint || newStyle->outlineSize() < style()->outlineSize())
    [all...]
RenderInline.cpp     [all...]
RenderBox.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 447 unsigned short outlineSize() const { return max(0, outlineWidth() + outlineOffset()); }
    [all...]

Completed in 1693 milliseconds