Searched refs:includeRightEdge (Results 1 - 3 of 3) sorted by relevance

/external/webkit/WebCore/rendering/
H A DInlineFlowBox.h101 int marginRight() const { if (includeRightEdge()) return boxModelObject()->marginRight(); return 0; }
103 int borderRight() const { if (includeRightEdge()) return renderer()->style()->borderRightWidth(); return 0; }
107 int paddingRight() const { if (includeRightEdge()) return boxModelObject()->paddingRight(); return 0; }
112 bool includeRightEdge() const { return m_includeRightEdge; } function in class:WebCore::InlineFlowBox
H A DInlineFlowBox.cpp206 bool includeRightEdge = false; local
219 includeRightEdge = true;
234 includeRightEdge = true;
243 setEdges(includeLeftEdge, includeRightEdge);
726 boxModelObject()->paintBoxShadow(context, tx, ty, w, h, s, shadowStyle, includeLeftEdge(), includeRightEdge());
780 boxModelObject()->paintBorder(context, tx, ty, w, h, renderer()->style(), includeLeftEdge(), includeRightEdge());
H A DRenderBoxModelObject.cpp450 bool includeRightEdge = box ? box->includeRightEdge() : true; local
452 int bRight = includeRightEdge ? borderRight() : 0;
454 int pRight = includeRightEdge ? paddingRight() : 0;
457 if (style()->hasBorderRadius() && (includeLeftEdge || includeRightEdge)) {
469 includeRightEdge ? topRight : IntSize(),
471 includeRightEdge ? bottomRight : IntSize());

Completed in 43 milliseconds