HomeSort by relevance Sort by last modified time
    Searched refs:shouldIndentText (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
LineWidth.h 49 LineWidth(RenderBlockFlow&, bool isFirstLine, IndentTextOrNot shouldIndentText);
69 bool shouldIndentText() const { return m_shouldIndentText == IndentText; }
LineWidth.cpp 38 LineWidth::LineWidth(RenderBlockFlow& block, bool isFirstLine, IndentTextOrNot shouldIndentText)
48 , m_shouldIndentText(shouldIndentText)
58 m_left = m_block.logicalLeftOffsetForLine(height, shouldIndentText(), logicalHeight);
59 m_right = m_block.logicalRightOffsetForLine(height, shouldIndentText(), logicalHeight);
106 if (shouldIndentText() && m_block.style()->isLeftToRightDirection())
116 if (shouldIndentText() && !m_block.style()->isLeftToRightDirection())
159 newLineLeft = m_block.logicalLeftOffsetForLine(floatLogicalBottom, shouldIndentText());
160 newLineRight = m_block.logicalRightOffsetForLine(floatLogicalBottom, shouldIndentText());
RenderBlock.h 157 LayoutUnit availableLogicalWidthForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* region, LayoutUnit logicalHeight = 0) const
159 return max<LayoutUnit>(0, logicalRightOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight)
160 - logicalLeftOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight));
162 LayoutUnit logicalRightOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* region, LayoutUnit logicalHeight = 0) const
164 return logicalRightOffsetForLine(position, logicalRightOffsetForContent(region), shouldIndentText, logicalHeight);
166 LayoutUnit logicalLeftOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* region, LayoutUnit logicalHeight = 0) const
168 return logicalLeftOffsetForLine(position, logicalLeftOffsetForContent(region), shouldIndentText, logicalHeight);
170 LayoutUnit startOffsetForLineInRegion(LayoutUnit position, bool shouldIndentText, RenderRegion* region, LayoutUnit logicalHeight = 0) const
172 return style()->isLeftToRightDirection() ? logicalLeftOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight)
173 : logicalWidth() - logicalRightOffsetForLineInRegion(position, shouldIndentText, region, logicalHeight)
    [all...]
RenderBlockLineLayout.cpp 617 static void updateLogicalInlinePositions(RenderBlockFlow* block, float& lineLogicalLeft, float& lineLogicalRight, float& availableLogicalWidth, bool firstLine, IndentTextOrNot shouldIndentText, LayoutUnit boxLogicalHeight)
620 lineLogicalLeft = block->logicalLeftOffsetForLine(block->logicalHeight(), shouldIndentText == IndentText, lineLogicalHeight);
623 lineLogicalRight = block->pixelSnappedLogicalRightOffsetForLine(block->logicalHeight(), shouldIndentText == IndentText, lineLogicalHeight);
638 IndentTextOrNot shouldIndentText = requiresIndent(isFirstLine, isAfterHardLineBreak, style());
642 updateLogicalInlinePositions(this, lineLogicalLeft, lineLogicalRight, availableLogicalWidth, isFirstLine, shouldIndentText, 0);
676 updateLogicalInlinePositions(this, lineLogicalLeft, lineLogicalRight, availableLogicalWidth, isFirstLine, shouldIndentText, renderBox->logicalHeight());
    [all...]
RenderBlockFlow.h 117 LayoutUnit startAlignedOffsetForLine(LayoutUnit position, bool shouldIndentText);

Completed in 31 milliseconds