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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBox.cpp193 if (isOutOfFlowPositioned() && newStyle->hasStaticBlockPosition(isHorizontalWritingMode()) && oldStyle->marginBefore() != newStyle->marginBefore()
2322 // widths, so we don't have to check marginBefore/marginAfter.
2517 computedValues.m_margins.m_after, style()->marginBefore(), style()->marginAfter());
2545 h = Length(parentBox()->contentLogicalHeight() - marginBefore() - marginAfter() - borderAndPaddingLogicalHeight(), Fixed);
2565 computedValues.m_margins.m_after, style()->marginBefore(), style()->marginAfter());
2581 LayoutUnit marginsBordersPadding = margins + parentBox()->marginBefore() + parentBox()->marginAfter() + parentBox()->borderAndPaddingLogicalHeight();
2660 rootMarginBorderPaddingHeight += cb->marginBefore() + cb->marginAfter() + cb->borderAndPaddingLogicalHeight();
2913 availableHeight -= marginBefore() + marginAfter() + borderAndPaddingLogicalHeight();
2920 LayoutUnit marginBefore; local
3414 const Length marginBefore = styleToUse->marginBefore(); local
3507 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
3821 Length marginBefore = style()->marginBefore(); local
[all...]
H A DRenderBoxModelObject.h148 virtual LayoutUnit marginBefore(const RenderStyle* otherStyle = 0) const = 0;
154 LayoutUnit marginLogicalHeight() const { return marginBefore() + marginAfter(); }
H A DRenderInline.h54 virtual LayoutUnit marginBefore(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
H A DRenderBlockFlow.h358 return std::max<LayoutUnit>(block->marginBefore(), 0);
362 return std::max<LayoutUnit>(-block->marginBefore(), 0);
H A DRenderBox.h294 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.h235 LayoutUnit marginBeforeForChild(const RenderBoxModelObject* child) const { return child->marginBefore(style()); }
H A DRenderTable.cpp449 oldTableLogicalTop += m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->marginAfter();
708 LayoutUnit captionLogicalHeight = m_captions[i]->logicalHeight() + m_captions[i]->marginBefore() + m_captions[i]->marginAfter();
H A DRootInlineBox.cpp705 ascentWithMargin += box->boxModelObject()->borderBefore() + box->boxModelObject()->paddingBefore() + box->boxModelObject()->marginBefore();
H A DRenderBlockFlow.cpp987 beforeMargin = child->marginBefore();
1000 afterMargin = child->marginBefore();
1069 if (!marginInfo.determinedMarginBeforeQuirk() && topQuirk && !marginBefore()) {
H A DRenderInline.cpp743 LayoutUnit RenderInline::marginBefore(const RenderStyle* otherStyle) const function in class:WebCore::RenderInline
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeOutsideInfo.cpp102 LayoutPoint marginBoxOrigin(-renderBox.marginLogicalLeft() - renderBox.borderAndPaddingLogicalLeft(), -renderBox.marginBefore() - renderBox.borderBefore() - renderBox.paddingBefore());
204 case MarginBox: return -m_renderer.marginBefore(m_renderer.containingBlock()->style());
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h402 bool hasMarginBeforeQuirk() const { return marginBefore().quirk(); }
705 const Length& marginBefore() const { return surround->margin.before(writingMode()); } function in class:WebCore::RenderStyle

Completed in 723 milliseconds