Searched refs:borderEnd (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTable.h56 int borderEnd() const { return m_borderEnd; } function in class:WebCore::FINAL
63 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
70 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
78 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
85 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
204 return borderStart() + borderEnd() + (collapseBorders() ? LayoutUnit() : (paddingStart() + paddingEnd() + borderSpacingInRowDirection()));
H A DRenderTableCol.cpp175 return style()->borderEnd();
187 return style()->borderEnd();
H A DRenderTableRow.h77 return style()->borderEnd();
83 return style()->borderEnd();
H A DRenderTableCell.h113 virtual int borderEnd() const;
181 return style()->borderEnd();
188 return style()->borderEnd();
204 return style()->borderEnd();
H A DRenderTableSection.h145 return style()->borderEnd();
151 return style()->borderEnd();
H A DRenderBoxModelObject.h121 virtual int borderEnd() const { return style()->borderEndWidth(); } function in class:WebCore::RenderBoxModelObject
130 LayoutUnit borderAndPaddingLogicalWidth() const { return borderStart() + borderEnd() + paddingStart() + paddingEnd(); }
154 bool hasInlineDirectionBordersOrPadding() const { return borderStart() || borderEnd() || paddingStart()|| paddingEnd(); }
H A DRenderTable.cpp330 borders = borderStart() + borderEnd() + (collapseBorders() ? LayoutUnit() : paddingStart() + paddingEnd());
411 // FIXME: We should do this recalc lazily in borderStart/borderEnd so that we don't have to make sure
412 // to call this before we call borderStart/borderEnd to avoid getting a stale value.
515 LayoutUnit sectionLogicalLeft = style()->isLeftToRightDirection() ? borderStart() : borderEnd();
746 // FIXME: Do the recalc in borderStart/borderEnd and make those const_cast this call.
1023 return RenderBlock::borderEnd();
1031 const BorderValue& tableEndBorder = style()->borderEnd();
1040 const BorderValue& columnAdjoiningBorder = column->style()->borderEnd();
1171 const BorderValue& tb = style()->borderEnd();
1436 return style()->borderEnd();
[all...]
H A DRenderFieldset.cpp78 logicalLeft = logicalWidth() - borderEnd() - paddingEnd() - logicalWidthForChild(legend);
H A DRenderTableRow.cpp104 return style()->borderEnd();
H A DRenderTableSection.cpp1092 const BorderValue& sb = style()->borderEnd();
1099 const BorderValue& gb = colGroup->style()->borderEnd();
1112 const BorderValue& cb = current.primaryCell()->style()->borderEnd(); // FIXME: Make this work with perpendicular and flipped cells.
1113 const BorderValue& rb = current.primaryCell()->parent()->style()->borderEnd();
1523 return hasSameDirectionAs(cell) ? style()->borderStart() : style()->borderEnd();
1529 return hasSameDirectionAs(cell) ? style()->borderEnd() : style()->borderStart();
H A DRenderTableCell.cpp606 CollapsedBorderValue result = CollapsedBorderValue(style()->borderEnd(), includeColor ? resolveColor(endColorProperty) : Color(), BCELL);
907 int RenderTableCell::borderEnd() const function in class:WebCore::RenderTableCell
909 return table()->collapseBorders() ? borderHalfEnd(false) : RenderBlock::borderEnd();
H A DRenderBlockLineLayout.cpp315 return child->marginEnd() + child->paddingEnd() + child->borderEnd();
H A DRenderBlock.cpp5932 child->borderEnd();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp1432 const BorderValue& RenderStyle::borderEnd() const function in class:RenderStyle
H A DRenderStyle.h462 const BorderValue& borderEnd() const;

Completed in 167 milliseconds