OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shouldIndentText
(Results
1 - 2
of
2
) 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; }
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
...]
Completed in 27 milliseconds