Searched refs:marginAfter (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.h143 virtual LayoutUnit marginAfter(const RenderStyle* otherStyle = 0) const = 0;
148 LayoutUnit marginLogicalHeight() const { return marginBefore() + marginAfter(); }
H A DRenderBox.cpp2052 // widths, so we don't have to check marginBefore/marginAfter.
2245 computedValues.m_margins.m_after, style()->marginBefore(), style()->marginAfter());
2273 h = Length(parentBox()->contentLogicalHeight() - marginBefore() - marginAfter() - borderAndPaddingLogicalHeight(), Fixed);
2293 computedValues.m_margins.m_after, style()->marginBefore(), style()->marginAfter());
2309 LayoutUnit marginsBordersPadding = margins + parentBox()->marginBefore() + parentBox()->marginAfter() + parentBox()->borderAndPaddingLogicalHeight();
2388 rootMarginBorderPaddingHeight += cb->marginBefore() + cb->marginAfter() + cb->borderAndPaddingLogicalHeight();
2672 availableHeight -= marginBefore() + marginAfter() + borderAndPaddingLogicalHeight();
2680 LayoutUnit marginAfter; local
2681 computeMarginsForDirection(BlockDirection, containingBlock, containingBlockLogicalWidthForContent(), logicalHeight(), marginBefore, marginAfter,
2687 containingBlock->setMarginAfterForChild(this, marginAfter);
3174 const Length marginAfter = styleToUse->marginAfter(); local
3266 computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxModelObject* containerBlock, LayoutUnit containerLogicalHeight, LayoutUnit bordersPlusPadding, LayoutUnit logicalHeight, const Length& logicalTop, const Length& logicalBottom, const Length& marginBefore, const Length& marginAfter, LogicalExtentComputedValues& computedValues) const argument
3581 Length marginAfter = style()->marginAfter(); local
[all...]
H A DRenderInline.h56 virtual LayoutUnit marginAfter(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
H A DRenderBlockFlow.h377 return std::max<LayoutUnit>(block->marginAfter(), 0);
381 return std::max<LayoutUnit>(-block->marginAfter(), 0);
H A DRenderBox.h296 virtual LayoutUnit marginAfter(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL { return m_marginBox.after((overrideStyle ? overrideStyle : style())->writingMode()); }
328 virtual LayoutUnit collapsedMarginAfter() const { return marginAfter(); }
H A DRenderBlock.h222 LayoutUnit marginAfterForChild(const RenderBoxModelObject* child) const { return child->marginAfter(style()); }
H A DRenderTable.cpp443 oldTableLogicalTop += m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->marginAfter();
629 LayoutUnit captionLogicalHeight = m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->marginAfter();
H A DRootInlineBox.cpp699 descentWithMargin += box->boxModelObject()->borderAfter() + box->boxModelObject()->paddingAfter() + box->boxModelObject()->marginAfter();
H A DRenderInline.cpp766 LayoutUnit RenderInline::marginAfter(const RenderStyle* otherStyle) const function in class:blink::RenderInline
H A DRenderBlockFlow.cpp1130 afterMargin = child->marginAfter();
1141 beforeMargin = child->marginAfter();
1428 if (marginInfo.hasMarginAfterQuirk() && !marginAfter()) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h387 bool hasMarginAfterQuirk() const { return marginAfter().quirk(); }
691 const Length& marginAfter() const { return surround->margin.after(writingMode()); } function in class:blink::RenderStyle

Completed in 128 milliseconds