/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderBoxModelObject.h | 144 virtual LayoutUnit marginStart(const RenderStyle* otherStyle = 0) const = 0; 149 LayoutUnit marginLogicalWidth() const { return marginStart() + marginEnd(); } in marginLogicalWidth() 151 …ddingOrMargin() const { return hasInlineDirectionBordersOrPadding() || marginStart()|| marginEnd()… in hasInlineDirectionBordersPaddingOrMargin()
|
D | RenderListMarker.cpp | 1150 Length startMargin = style()->marginStart(); in layout() 1415 LayoutUnit marginStart = 0; in updateMargins() local 1425 marginStart = -1; in updateMargins() 1434 marginStart = -minPreferredLogicalWidth() - cMarkerPadding; in updateMargins() 1441 marginStart = -offset - cMarkerPadding - 1; in updateMargins() 1446 … marginStart = m_text.isEmpty() ? LayoutUnit() : -minPreferredLogicalWidth() - offset / 2; in updateMargins() 1449 marginEnd = -marginStart - minPreferredLogicalWidth(); in updateMargins() 1467 marginStart = -marginEnd - minPreferredLogicalWidth(); in updateMargins() 1472 style()->setMarginStart(Length(marginStart, Fixed)); in updateMargins()
|
D | RenderTable.cpp | 271 … LayoutUnit marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth); in updateLogicalWidth() local 273 LayoutUnit marginTotal = marginStart + marginEnd; in updateLogicalWidth() 278 …availableContentLogicalWidth = shrinkLogicalWidthToAvoidFloats(marginStart, marginEnd, toRenderBlo… in updateLogicalWidth() 304 …th, logicalWidth(), marginValues.m_start, marginValues.m_end, style()->marginStart(), style()->mar… in updateLogicalWidth() 358 …caption->setLogicalLocation(LayoutPoint(caption->marginStart(), collapsedMarginBeforeForChild(capt… in layoutCaption() 368 caption->setLogicalLocation(LayoutPoint(caption->marginStart(), captionLogicalTop)); in layoutCaption()
|
D | RenderBox.cpp | 1903 computedValues.m_margins.m_start = marginStart(); in computeLogicalWidth() 1941 …computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogic… in computeLogicalWidth() 1961 computedValues.m_margins.m_end, style()->marginStart(), style()->marginEnd()); in computeLogicalWidth() 1973 if (styleToUse->textAutosizingMultiplier() != 1 && styleToUse->marginStart().type() == Fixed) { in computeLogicalWidth() 1989 LayoutUnit marginStart = 0; in fillAvailableMeasure() local 1991 return fillAvailableMeasure(availableLogicalWidth, marginStart, marginEnd); in fillAvailableMeasure() 1994 …ox::fillAvailableMeasure(LayoutUnit availableLogicalWidth, LayoutUnit& marginStart, LayoutUnit& ma… in fillAvailableMeasure() argument 1996 marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth); in fillAvailableMeasure() 1998 return availableLogicalWidth - marginStart - marginEnd; in fillAvailableMeasure() 2036 LayoutUnit marginStart = 0; in computeLogicalWidthUsing() local [all …]
|
D | RenderReplaced.cpp | 379 … LayoutUnit marginStart = minimumValueForLength(style()->marginStart(), logicalWidth); in computeReplacedLogicalWidth() local 381 …logicalWidth = std::max<LayoutUnit>(0, logicalWidth - (marginStart + marginEnd + (width() - client… in computeReplacedLogicalWidth()
|
D | RenderBox.h | 297 virtual LayoutUnit marginStart(const RenderStyle* overrideStyle = 0) const OVERRIDE FINAL 391 …ngBlock, LayoutUnit containerWidth, LayoutUnit childWidth, LayoutUnit& marginStart, LayoutUnit& ma… 694 …LayoutUnit fillAvailableMeasure(LayoutUnit availableLogicalWidth, LayoutUnit& marginStart, LayoutU…
|
D | RenderInline.h | 57 virtual LayoutUnit marginStart(const RenderStyle* otherStyle = 0) const OVERRIDE FINAL;
|
D | RenderListItem.cpp | 364 …gicalLeft = leftLineOffset - lineOffset - paddingStart() - borderStart() + m_marker->marginStart(); in positionListMarker()
|
D | RenderBlock.h | 223 …arginStartForChild(const RenderBoxModelObject* child) const { return child->marginStart(style()); } in marginStartForChild()
|
D | RenderBlockLineLayout.cpp | 1157 return getBPMWidth(child->marginStart(), childStyle->marginStart()) + in getBorderPaddingMargin() 1286 Length startMargin = childStyle->marginStart(); in computeInlinePreferredLogicalWidths()
|
D | RenderBlock.cpp | 3275 LayoutUnit marginStart = 0; in computeBlockPreferredLogicalWidths() local 3278 marginStart += startMarginLength.value(); in computeBlockPreferredLogicalWidths() 3281 margin = marginStart + marginEnd; in computeBlockPreferredLogicalWidths() 3309 LayoutUnit marginLogicalLeft = ltr ? marginStart : marginEnd; in computeBlockPreferredLogicalWidths() 3310 LayoutUnit marginLogicalRight = ltr ? marginEnd : marginStart; in computeBlockPreferredLogicalWidths()
|
D | RenderInline.cpp | 751 LayoutUnit RenderInline::marginStart(const RenderStyle* otherStyle) const in marginStart() function in blink::RenderInline
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | ShapeOutsideInfo.cpp | 250 case MarginBox: return -m_renderer.marginStart(m_renderer.containingBlock()->style()); in logicalLeftOffset()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
D | BreakingContextInlineHeaders.h | 301 return child->marginStart() + child->paddingStart() + child->borderStart(); in borderPaddingMarginStart()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | RenderStyle.h | 692 const Length& marginStart() const { return surround->margin.start(writingMode(), direction()); } in marginStart() function
|