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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.h144 virtual LayoutUnit marginStart(const RenderStyle* otherStyle = 0) const = 0;
149 LayoutUnit marginLogicalWidth() const { return marginStart() + marginEnd(); }
151 bool hasInlineDirectionBordersPaddingOrMargin() const { return hasInlineDirectionBordersOrPadding() || marginStart()|| marginEnd(); }
H A DRenderListMarker.cpp1150 Length startMargin = style()->marginStart();
1415 LayoutUnit marginStart = 0; local
1425 marginStart = -1;
1434 marginStart = -minPreferredLogicalWidth() - cMarkerPadding;
1441 marginStart = -offset - cMarkerPadding - 1;
1446 marginStart = m_text.isEmpty() ? LayoutUnit() : -minPreferredLogicalWidth() - offset / 2;
1449 marginEnd = -marginStart - minPreferredLogicalWidth();
1467 marginStart = -marginEnd - minPreferredLogicalWidth();
1472 style()->setMarginStart(Length(marginStart, Fixed));
H A DRenderTable.cpp271 LayoutUnit marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth); local
273 LayoutUnit marginTotal = marginStart + marginEnd;
278 availableContentLogicalWidth = shrinkLogicalWidthToAvoidFloats(marginStart, marginEnd, toRenderBlockFlow(cb));
304 computeMarginsForDirection(InlineDirection, cb, availableLogicalWidth, logicalWidth(), marginValues.m_start, marginValues.m_end, style()->marginStart(), style()->marginEnd());
358 caption->setLogicalLocation(LayoutPoint(caption->marginStart(), collapsedMarginBeforeForChild(caption) + logicalHeight()));
368 caption->setLogicalLocation(LayoutPoint(caption->marginStart(), captionLogicalTop));
H A DRenderReplaced.cpp379 LayoutUnit marginStart = minimumValueForLength(style()->marginStart(), logicalWidth); local
381 logicalWidth = std::max<LayoutUnit>(0, logicalWidth - (marginStart + marginEnd + (width() - clientWidth())));
H A DRenderBox.cpp1903 computedValues.m_margins.m_start = marginStart();
1941 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth);
1961 computedValues.m_margins.m_end, style()->marginStart(), style()->marginEnd());
1973 if (styleToUse->textAutosizingMultiplier() != 1 && styleToUse->marginStart().type() == Fixed) {
1989 LayoutUnit marginStart = 0; local
1991 return fillAvailableMeasure(availableLogicalWidth, marginStart, marginEnd);
1994 LayoutUnit RenderBox::fillAvailableMeasure(LayoutUnit availableLogicalWidth, LayoutUnit& marginStart, LayoutUnit& marginEnd) const argument
1996 marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth);
1998 return availableLogicalWidth - marginStart
2129 computeMarginsForDirection(MarginDirection flowDirection, const RenderBlock* containingBlock, LayoutUnit containerWidth, LayoutUnit childWidth, LayoutUnit& marginStart, LayoutUnit& marginEnd, Length marginStartLength, Length marginEndLength) const argument
[all...]
H A DRenderInline.h57 virtual LayoutUnit marginStart(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
H A DRenderBox.h297 virtual LayoutUnit marginStart(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL
391 void computeMarginsForDirection(MarginDirection forDirection, const RenderBlock* containingBlock, LayoutUnit containerWidth, LayoutUnit childWidth, LayoutUnit& marginStart, LayoutUnit& marginEnd, Length marginStartLength, Length marginStartEnd) const;
694 LayoutUnit fillAvailableMeasure(LayoutUnit availableLogicalWidth, LayoutUnit& marginStart, LayoutUnit& marginEnd) const;
H A DRenderListItem.cpp364 markerLogicalLeft = leftLineOffset - lineOffset - paddingStart() - borderStart() + m_marker->marginStart();
H A DRenderBlock.h223 LayoutUnit marginStartForChild(const RenderBoxModelObject* child) const { return child->marginStart(style()); }
H A DRenderBlock.cpp3275 LayoutUnit marginStart = 0; local
3278 marginStart += startMarginLength.value();
3281 margin = marginStart + marginEnd;
3309 LayoutUnit marginLogicalLeft = ltr ? marginStart : marginEnd;
3310 LayoutUnit marginLogicalRight = ltr ? marginEnd : marginStart;
H A DRenderBlockLineLayout.cpp1157 return getBPMWidth(child->marginStart(), childStyle->marginStart()) +
1286 Length startMargin = childStyle->marginStart();
H A DRenderInline.cpp751 LayoutUnit RenderInline::marginStart(const RenderStyle* otherStyle) const function in class:blink::RenderInline
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeOutsideInfo.cpp250 case MarginBox: return -m_renderer.marginStart(m_renderer.containingBlock()->style());
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h301 return child->marginStart() + child->paddingStart() + child->borderStart();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h692 const Length& marginStart() const { return surround->margin.start(writingMode(), direction()); } function in class:blink::RenderStyle

Completed in 233 milliseconds