Home
last modified time | relevance | path

Searched refs:marginLogicalRight (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBox.cpp3098 … const Length marginLogicalRight = isHorizontal ? style()->marginRight() : style()->marginBottom(); in computePositionedLogicalWidth() local
3134 … logicalLeftLength, logicalRightLength, marginLogicalLeft, marginLogicalRight, in computePositionedLogicalWidth()
3143 … logicalLeftLength, logicalRightLength, marginLogicalLeft, marginLogicalRight, in computePositionedLogicalWidth()
3160 … logicalLeftLength, logicalRightLength, marginLogicalLeft, marginLogicalRight, in computePositionedLogicalWidth()
3198 … const Length& marginLogicalRight, LogicalExtentComputedValues& computedValues) const in computePositionedLogicalWidthUsing() argument
3238 if (marginLogicalLeft.isAuto() && marginLogicalRight.isAuto()) { in computePositionedLogicalWidthUsing()
3256 … marginLogicalRightValue = valueForLength(marginLogicalRight, containerRelativeLogicalWidth); in computePositionedLogicalWidthUsing()
3258 } else if (marginLogicalRight.isAuto()) { in computePositionedLogicalWidthUsing()
3265 … marginLogicalRightValue = valueForLength(marginLogicalRight, containerRelativeLogicalWidth); in computePositionedLogicalWidthUsing()
3316 …marginLogicalRightValue = minimumValueForLength(marginLogicalRight, containerRelativeLogicalWidth); in computePositionedLogicalWidthUsing()
[all …]
DInlineFlowBox.h129 …LayoutUnit marginBorderPaddingLogicalRight() const { return marginLogicalRight() + borderLogicalRi… in marginBorderPaddingLogicalRight()
136 LayoutUnit marginLogicalRight() const in marginLogicalRight() function
DRenderBox.h292 … LayoutUnit marginLogicalRight() const { return m_marginBox.logicalRight(style()->writingMode()); } in marginLogicalRight() function
686 … const Length& marginLogicalRight, LogicalExtentComputedValues&) const;
DRenderInline.cpp595 … childLine->logicalWidth() + childLine->marginLogicalLeft() + childLine->marginLogicalRight(), in generateCulledLineBoxRects()
601 … childLine->logicalWidth() + childLine->marginLogicalLeft() + childLine->marginLogicalRight())); in generateCulledLineBoxRects()
DRenderBlock.cpp3711 LayoutUnit marginLogicalRight = ltr ? marginEnd : marginStart; in computeBlockPreferredLogicalWidths() local
3713 …LayoutUnit maxRight = marginLogicalRight > 0 ? max(floatRightWidth, marginLogicalRight) : floatRig… in computeBlockPreferredLogicalWidths()
DInlineFlowBox.cpp416 logicalLeft += flow->marginLogicalRight(); in placeBoxRangeInInlineDirection()