Searched refs:marginBefore (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.h142 virtual LayoutUnit marginBefore(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();
2679 LayoutUnit marginBefore; local
2681 computeMarginsForDirection(BlockDirection, containingBlock, containingBlockLogicalWidthForContent(), logicalHeight(), marginBefore, marginAfter,
2686 containingBlock->setMarginBeforeForChild(this, marginBefore);
3173 const Length marginBefore = styleToUse->marginBefore(); 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
3580 Length marginBefore = style()->marginBefore(); local
[all...]
H A DRenderInline.h55 virtual LayoutUnit marginBefore(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
H A DRenderBlockFlow.h369 return std::max<LayoutUnit>(block->marginBefore(), 0);
373 return std::max<LayoutUnit>(-block->marginBefore(), 0);
H A DRenderBox.h295 virtual LayoutUnit marginBefore(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL { return m_marginBox.before((overrideStyle ? overrideStyle : style())->writingMode()); }
327 virtual LayoutUnit collapsedMarginBefore() const { return marginBefore(); }
H A DRenderBlock.h221 LayoutUnit marginBeforeForChild(const RenderBoxModelObject* child) const { return child->marginBefore(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.cpp698 ascentWithMargin += box->boxModelObject()->borderBefore() + box->boxModelObject()->paddingBefore() + box->boxModelObject()->marginBefore();
H A DRenderInline.cpp761 LayoutUnit RenderInline::marginBefore(const RenderStyle* otherStyle) const function in class:blink::RenderInline
H A DRenderBlockFlow.cpp1129 beforeMargin = child->marginBefore();
1142 afterMargin = child->marginBefore();
1211 if (!marginInfo.determinedMarginBeforeQuirk() && topQuirk && !marginBefore()) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeOutsideInfo.cpp104 LayoutPoint marginBoxOrigin(-renderBox.marginLogicalLeft() - renderBox.borderAndPaddingLogicalLeft(), -renderBox.marginBefore() - renderBox.borderBefore() - renderBox.paddingBefore());
208 case MarginBox: return -m_renderer.marginBefore(m_renderer.containingBlock()->style());
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h386 bool hasMarginBeforeQuirk() const { return marginBefore().quirk(); }
690 const Length& marginBefore() const { return surround->margin.before(writingMode()); } function in class:blink::RenderStyle

Completed in 2351 milliseconds