Home
last modified time | relevance | path

Searched refs:totalLogicalWidth (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderBlockLineLayout.cpp376 …ghtDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float avail… in updateLogicalWidthForLeftAlignedBlock() argument
381 if (totalLogicalWidth > availableLogicalWidth && trailingSpaceRun) in updateLogicalWidthForLeftAlignedBlock()
382 …ogicalWidth(max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableL… in updateLogicalWidthForLeftAlignedBlock()
388 else if (totalLogicalWidth > availableLogicalWidth) in updateLogicalWidthForLeftAlignedBlock()
389 logicalLeft -= (totalLogicalWidth - availableLogicalWidth); in updateLogicalWidthForLeftAlignedBlock()
392 …ghtDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float avail… in updateLogicalWidthForRightAlignedBlock() argument
399 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth(); in updateLogicalWidthForRightAlignedBlock()
402 if (totalLogicalWidth < availableLogicalWidth) in updateLogicalWidthForRightAlignedBlock()
403 logicalLeft += availableLogicalWidth - totalLogicalWidth; in updateLogicalWidthForRightAlignedBlock()
407 if (totalLogicalWidth > availableLogicalWidth && trailingSpaceRun) { in updateLogicalWidthForRightAlignedBlock()
[all …]
DInlineFlowBox.cpp1041 int totalLogicalWidth; in paintFillLayer() local
1045 totalLogicalWidth = logicalOffsetOnLine; in paintFillLayer()
1047 totalLogicalWidth += curr->logicalWidth(); in paintFillLayer()
1051 totalLogicalWidth = logicalOffsetOnLine; in paintFillLayer()
1053 totalLogicalWidth += curr->logicalWidth(); in paintFillLayer()
1057 int stripWidth = isHorizontal() ? totalLogicalWidth : width(); in paintFillLayer()
1058 int stripHeight = isHorizontal() ? height() : totalLogicalWidth; in paintFillLayer()
1143 int totalLogicalWidth = logicalOffsetOnLine; in paintBoxDecorations() local
1145 totalLogicalWidth += curr->logicalWidth(); in paintBoxDecorations()
1148 int stripWidth = isHorizontal() ? totalLogicalWidth : w; in paintBoxDecorations()
[all …]
DRenderBox.cpp2967 …int totalLogicalWidth = logicalWidth() + logicalLeftValue + logicalRightValue + marginLogicalLeft… in computePositionedLogicalWidthReplaced() local
2968 if (totalLogicalWidth > containerLogicalWidth && (containerDirection == RTL)) in computePositionedLogicalWidthReplaced()
2969 logicalLeftValue = containerLogicalWidth - (totalLogicalWidth - logicalLeftValue); in computePositionedLogicalWidthReplaced()