Searched refs:totalLogicalWidth (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlockLineLayout.cpp377 static void updateLogicalWidthForLeftAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth) argument
382 if (totalLogicalWidth > availableLogicalWidth && trailingSpaceRun)
383 trailingSpaceRun->m_box->setLogicalWidth(max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableLogicalWidth));
389 else if (totalLogicalWidth > availableLogicalWidth)
390 logicalLeft -= (totalLogicalWidth - availableLogicalWidth);
393 static void updateLogicalWidthForRightAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth) argument
400 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
403 if (totalLogicalWidth < availableLogicalWidth)
404 logicalLeft += availableLogicalWidth - totalLogicalWidth;
408 if (totalLogicalWidth > availableLogicalWidt
415 updateLogicalWidthForCenterAlignedBlock(bool isLeftToRightDirection, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float availableLogicalWidth) argument
535 computeExpansionForJustifiedText(BidiRun* firstRun, BidiRun* trailingSpaceRun, Vector<unsigned, 16>& expansionOpportunities, unsigned expansionOpportunityCount, float& totalLogicalWidth, float availableLogicalWidth) argument
567 updateLogicalWidthForAlignment(const ETextAlign& textAlign, const RootInlineBox* rootInlineBox, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float& availableLogicalWidth, int expansionOpportunityCount) argument
691 float totalLogicalWidth = lineBox->getFlowSpacingLogicalWidth(); local
2267 float totalLogicalWidth = curr->logicalWidth(); local
2312 float totalLogicalWidth = curr->placeEllipsis(ellipsisStr, ltr, blockLeftEdge, blockRightEdge, width); local
2388 float totalLogicalWidth = 0; local
[all...]
H A DInlineFlowBox.cpp1171 LayoutUnit totalLogicalWidth; local
1175 totalLogicalWidth = logicalOffsetOnLine;
1177 totalLogicalWidth += curr->logicalWidth();
1181 totalLogicalWidth = logicalOffsetOnLine;
1183 totalLogicalWidth += curr->logicalWidth();
1187 LayoutUnit stripWidth = isHorizontal() ? totalLogicalWidth : static_cast<LayoutUnit>(width());
1188 LayoutUnit stripHeight = isHorizontal() ? static_cast<LayoutUnit>(height()) : totalLogicalWidth;
1309 LayoutUnit totalLogicalWidth = logicalOffsetOnLine; local
1311 totalLogicalWidth += curr->logicalWidth();
1314 LayoutUnit stripWidth = isHorizontal() ? totalLogicalWidth
1381 LayoutUnit totalLogicalWidth = logicalOffsetOnLine; local
[all...]
H A DRenderBlockFlow.h245 void updateLogicalWidthForAlignment(const ETextAlign&, const RootInlineBox*, BidiRun* trailingSpaceRun, float& logicalLeft, float& totalLogicalWidth, float& availableLogicalWidth, int expansionOpportunityCount);
H A DRenderBox.cpp4089 int totalLogicalWidth = computedValues.m_extent + logicalLeftValue + logicalRightValue + marginLogicalLeftAlias + marginLogicalRightAlias; local
4090 logicalLeftValue = containerLogicalWidth - (totalLogicalWidth - logicalLeftValue);

Completed in 230 milliseconds