marginAfter       239 Source/core/rendering/RenderBlock.h     LayoutUnit marginAfterForChild(const RenderBoxModelObject* child) const { return child->marginAfter(style()); }
marginAfter       992 Source/core/rendering/RenderBlockFlow.cpp             afterMargin = child->marginAfter();
marginAfter      1003 Source/core/rendering/RenderBlockFlow.cpp             beforeMargin = child->marginAfter();
marginAfter      1312 Source/core/rendering/RenderBlockFlow.cpp         if (marginInfo.hasMarginAfterQuirk() && !marginAfter()) {
marginAfter       374 Source/core/rendering/RenderBlockFlow.h             return std::max<LayoutUnit>(block->marginAfter(), 0);
marginAfter       378 Source/core/rendering/RenderBlockFlow.h             return std::max<LayoutUnit>(-block->marginAfter(), 0);
marginAfter      2557 Source/core/rendering/RenderBox.cpp             h = Length(parentBox()->contentLogicalHeight() - marginBefore() - marginAfter() - borderAndPaddingLogicalHeight(), Fixed);
marginAfter      2598 Source/core/rendering/RenderBox.cpp             LayoutUnit marginsBordersPadding = margins + parentBox()->marginBefore() + parentBox()->marginAfter() + parentBox()->borderAndPaddingLogicalHeight();
marginAfter      2684 Source/core/rendering/RenderBox.cpp             rootMarginBorderPaddingHeight += cb->marginBefore() + cb->marginAfter() + cb->borderAndPaddingLogicalHeight();
marginAfter      2937 Source/core/rendering/RenderBox.cpp         availableHeight -= marginBefore() + marginAfter() + borderAndPaddingLogicalHeight();
marginAfter      2942 Source/core/rendering/RenderBox.cpp void RenderBox::computeBlockDirectionMargins(const RenderBlock* containingBlock, LayoutUnit& marginBefore, LayoutUnit& marginAfter) const
marginAfter      2948 Source/core/rendering/RenderBox.cpp         marginAfter = 0;
marginAfter      2957 Source/core/rendering/RenderBox.cpp     marginAfter = minimumValueForLength(style()->marginAfterUsing(containingBlockStyle), cw);
marginAfter      2963 Source/core/rendering/RenderBox.cpp     LayoutUnit marginAfter;
marginAfter      2964 Source/core/rendering/RenderBox.cpp     computeBlockDirectionMargins(containingBlock, marginBefore, marginAfter);
marginAfter      2966 Source/core/rendering/RenderBox.cpp     containingBlock->setMarginAfterForChild(this, marginAfter);
marginAfter      3453 Source/core/rendering/RenderBox.cpp     const Length marginAfter = styleToUse->marginAfter();
marginAfter      3481 Source/core/rendering/RenderBox.cpp                                         logicalTopLength, logicalBottomLength, marginBefore, marginAfter,
marginAfter      3492 Source/core/rendering/RenderBox.cpp                                             logicalTopLength, logicalBottomLength, marginBefore, marginAfter,
marginAfter      3508 Source/core/rendering/RenderBox.cpp                                             logicalTopLength, logicalBottomLength, marginBefore, marginAfter,
marginAfter      3547 Source/core/rendering/RenderBox.cpp                                                     Length logicalTop, Length logicalBottom, Length marginBefore, Length marginAfter,
marginAfter      3595 Source/core/rendering/RenderBox.cpp         if (marginBefore.isAuto() && marginAfter.isAuto()) {
marginAfter      3602 Source/core/rendering/RenderBox.cpp             computedValues.m_margins.m_after = valueForLength(marginAfter, containerRelativeLogicalWidth);
marginAfter      3604 Source/core/rendering/RenderBox.cpp         } else if (marginAfter.isAuto()) {
marginAfter      3611 Source/core/rendering/RenderBox.cpp             computedValues.m_margins.m_after = valueForLength(marginAfter, containerRelativeLogicalWidth);
marginAfter      3641 Source/core/rendering/RenderBox.cpp         computedValues.m_margins.m_after = minimumValueForLength(marginAfter, containerRelativeLogicalWidth);
marginAfter      3860 Source/core/rendering/RenderBox.cpp     Length marginAfter = style()->marginAfter();
marginAfter      3893 Source/core/rendering/RenderBox.cpp         if (marginAfter.isAuto())
marginAfter      3894 Source/core/rendering/RenderBox.cpp             marginAfter.setValue(Fixed, 0);
marginAfter      3905 Source/core/rendering/RenderBox.cpp     if (marginBefore.isAuto() && marginAfter.isAuto()) {
marginAfter      3923 Source/core/rendering/RenderBox.cpp         marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth);
marginAfter      3930 Source/core/rendering/RenderBox.cpp         marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth);
marginAfter      3937 Source/core/rendering/RenderBox.cpp         marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth);
marginAfter      3943 Source/core/rendering/RenderBox.cpp     } else if (marginAfter.isAuto()) {
marginAfter      3953 Source/core/rendering/RenderBox.cpp         marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth);
marginAfter      4438 Source/core/rendering/RenderBox.cpp         rect.expand(isHorizontalWritingMode() ? LayoutSize(LayoutUnit(), marginAfter()) : LayoutSize(marginAfter(), LayoutUnit()));
marginAfter       296 Source/core/rendering/RenderBox.h     virtual LayoutUnit marginAfter(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL { return m_marginBox.after((overrideStyle ? overrideStyle : style())->writingMode()); }
marginAfter       329 Source/core/rendering/RenderBox.h     virtual LayoutUnit collapsedMarginAfter() const { return marginAfter(); }
marginAfter       396 Source/core/rendering/RenderBox.h     void computeBlockDirectionMargins(const RenderBlock* containingBlock, LayoutUnit& marginBefore, LayoutUnit& marginAfter) const;
marginAfter       161 Source/core/rendering/RenderBoxModelObject.h     virtual LayoutUnit marginAfter(const RenderStyle* otherStyle = 0) const = 0;
marginAfter       166 Source/core/rendering/RenderBoxModelObject.h     LayoutUnit marginLogicalHeight() const { return marginBefore() + marginAfter(); }
marginAfter        53 Source/core/rendering/RenderInline.h     virtual LayoutUnit marginAfter(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
marginAfter       462 Source/core/rendering/RenderTable.cpp             oldTableLogicalTop += m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->marginAfter();
marginAfter       721 Source/core/rendering/RenderTable.cpp         LayoutUnit captionLogicalHeight = m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->marginAfter();
marginAfter       706 Source/core/rendering/RootInlineBox.cpp             descentWithMargin += box->boxModelObject()->borderAfter() + box->boxModelObject()->paddingAfter() + box->boxModelObject()->marginAfter();
marginAfter       403 Source/core/rendering/style/RenderStyle.h     bool hasMarginAfterQuirk() const { return marginAfter().quirk(); }
marginAfter       703 Source/core/rendering/style/RenderStyle.h     const Length& marginAfter() const { return surround->margin.after(writingMode()); }