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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTable.h56 virtual int borderEnd() const OVERRIDE { return m_borderEnd; }
63 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
70 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
78 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
85 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
210 return borderStart() + borderEnd() + (collapseBorders() ? LayoutUnit() : (paddingStart() + paddingEnd() + borderSpacingInRowDirection()));
H A DRenderTableRow.h80 return style()->borderEnd();
86 return style()->borderEnd();
H A DRenderBoxModelObject.h112 virtual int borderEnd() const { return style()->borderEndWidth(); } function in class:blink::RenderBoxModelObject
124 LayoutUnit borderAndPaddingLogicalWidth() const { return borderStart() + borderEnd() + paddingStart() + paddingEnd(); }
130 LayoutUnit borderLogicalWidth() const { return borderStart() + borderEnd(); }
152 bool hasInlineDirectionBordersOrPadding() const { return borderStart() || borderEnd() || paddingStart()|| paddingEnd(); }
H A DRenderTableCell.h120 virtual int borderEnd() const OVERRIDE;
188 return style()->borderEnd();
195 return style()->borderEnd();
211 return style()->borderEnd();
H A DRenderTableCol.cpp174 return style()->borderEnd();
186 return style()->borderEnd();
H A DRenderTableSection.h157 return style()->borderEnd();
163 return style()->borderEnd();
H A DRenderTable.cpp325 borders = borderStart() + borderEnd() + (collapseBorders() ? LayoutUnit() : paddingStart() + paddingEnd());
410 // FIXME: We should do this recalc lazily in borderStart/borderEnd so that we don't have to make sure
411 // to call this before we call borderStart/borderEnd to avoid getting a stale value.
515 LayoutUnit sectionLogicalLeft = style()->isLeftToRightDirection() ? borderStart() : borderEnd();
656 // FIXME: Do the recalc in borderStart/borderEnd and make those const_cast this call.
934 return RenderBlock::borderEnd();
942 const BorderValue& tableEndBorder = style()->borderEnd();
951 const BorderValue& columnAdjoiningBorder = column->style()->borderEnd();
1082 const BorderValue& tb = style()->borderEnd();
1341 return style()->borderEnd();
[all...]
H A DRenderFieldset.cpp81 logicalLeft = logicalWidth() - borderEnd() - paddingEnd() - logicalWidthForChild(legend);
H A DRenderTableRow.cpp112 return style()->borderEnd();
H A DRenderTableSection.cpp1191 const BorderValue& sb = side == BorderStart ? style()->borderStart() : style()->borderEnd();
1198 const BorderValue& gb = side == BorderStart ? colGroup->style()->borderStart() : colGroup->style()->borderEnd();
1213 const BorderValue& cb = side == BorderStart ? primaryCellStyle->borderStart() : primaryCellStyle->borderEnd(); // FIXME: Make this work with perpendicular and flipped cells.
1214 const BorderValue& rb = side == BorderStart ? primaryCellParentStyle->borderStart() : primaryCellParentStyle->borderEnd();
1450 return hasSameDirectionAs(cell) ? style()->borderStart() : style()->borderEnd();
1456 return hasSameDirectionAs(cell) ? style()->borderEnd() : style()->borderStart();
H A DRenderTableCell.cpp612 CollapsedBorderValue result = CollapsedBorderValue(style()->borderEnd(), includeColor ? resolveColor(endColorProperty) : Color(), BCELL);
913 int RenderTableCell::borderEnd() const function in class:blink::RenderTableCell
915 return table()->collapseBorders() ? borderHalfEnd(false) : RenderBlockFlow::borderEnd();
H A DRenderBlockLineLayout.cpp1155 child->borderEnd();
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h306 return child->marginEnd() + child->paddingEnd() + child->borderEnd();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp1531 const BorderValue& RenderStyle::borderEnd() const function in class:blink::RenderStyle
H A DRenderStyle.h485 const BorderValue& borderEnd() const;

Completed in 805 milliseconds