Searched refs:shouldIndentText (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderBlock.h | 157 …LayoutUnit availableLogicalWidthForLineInRegion(LayoutUnit position, bool shouldIndentText, Render… 159 …return max<LayoutUnit>(0, logicalRightOffsetForLineInRegion(position, shouldIndentText, region, lo… 160 - logicalLeftOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight)); 162 …LayoutUnit logicalRightOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderReg… 164 …lRightOffsetForLine(position, logicalRightOffsetForContent(region), shouldIndentText, logicalHeigh… 166 …LayoutUnit logicalLeftOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegi… 168 …calLeftOffsetForLine(position, logicalLeftOffsetForContent(region), shouldIndentText, logicalHeigh… 170 …LayoutUnit startOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* re… 172 …LeftToRightDirection() ? logicalLeftOffsetForLineInRegion(position, shouldIndentText, region, logi… 173 …: logicalWidth() - logicalRightOffsetForLineInRegion(position, shouldIndentText, region, logicalHe… [all …]
|
D | LineWidth.cpp | 38 LineWidth::LineWidth(RenderBlockFlow& block, bool isFirstLine, IndentTextOrNot shouldIndentText) in LineWidth() argument 48 , m_shouldIndentText(shouldIndentText) in LineWidth() 58 m_left = m_block.logicalLeftOffsetForLine(height, shouldIndentText(), logicalHeight); in updateAvailableWidth() 59 m_right = m_block.logicalRightOffsetForLine(height, shouldIndentText(), logicalHeight); in updateAvailableWidth() 106 if (shouldIndentText() && m_block.style()->isLeftToRightDirection()) in shrinkAvailableWidthForNewFloatIfNeeded() 116 if (shouldIndentText() && !m_block.style()->isLeftToRightDirection()) in shrinkAvailableWidthForNewFloatIfNeeded() 159 newLineLeft = m_block.logicalLeftOffsetForLine(floatLogicalBottom, shouldIndentText()); in fitBelowFloats() 160 newLineRight = m_block.logicalRightOffsetForLine(floatLogicalBottom, shouldIndentText()); in fitBelowFloats()
|
D | LineWidth.h | 49 LineWidth(RenderBlockFlow&, bool isFirstLine, IndentTextOrNot shouldIndentText); 69 bool shouldIndentText() const { return m_shouldIndentText == IndentText; } in shouldIndentText() function
|
D | RenderBlockLineLayout.cpp | 617 …ight, float& availableLogicalWidth, bool firstLine, IndentTextOrNot shouldIndentText, LayoutUnit b… in updateLogicalInlinePositions() argument 620 …lineLogicalLeft = block->logicalLeftOffsetForLine(block->logicalHeight(), shouldIndentText == Inde… in updateLogicalInlinePositions() 623 …lock->pixelSnappedLogicalRightOffsetForLine(block->logicalHeight(), shouldIndentText == IndentText… in updateLogicalInlinePositions() 638 IndentTextOrNot shouldIndentText = requiresIndent(isFirstLine, isAfterHardLineBreak, style()); in computeInlineDirectionPositionsForLine() local 642 …(this, lineLogicalLeft, lineLogicalRight, availableLogicalWidth, isFirstLine, shouldIndentText, 0); in computeInlineDirectionPositionsForLine() 676 …eLogicalLeft, lineLogicalRight, availableLogicalWidth, isFirstLine, shouldIndentText, renderBox->l… in computeInlineDirectionPositionsForLine()
|
D | RenderBlockFlow.h | 117 LayoutUnit startAlignedOffsetForLine(LayoutUnit position, bool shouldIndentText);
|