Searched defs:isFirstLine (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineInfo.h42 bool isFirstLine() const { return m_isFirstLine; } function in class:blink::LineInfo
H A DLineWidth.cpp38 LineWidth::LineWidth(RenderBlockFlow& block, bool isFirstLine, IndentTextOrNot shouldIndentText) argument
47 , m_isFirstLine(isFirstLine)
157 void LineWidth::wrapNextToShapeOutside(bool isFirstLine) argument
159 LayoutUnit lineHeight = m_block.lineHeight(isFirstLine, m_block.isHorizontalWritingMode() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes);
180 void LineWidth::fitBelowFloats(bool isFirstLine) argument
193 return wrapNextToShapeOutside(isFirstLine);
H A DBreakingContextInlineHeaders.h170 && (flow->style(lineInfo.isFirstLine())->lineHeight() != parent->style(lineInfo.isFirstLine())->lineHeight()
557 RenderStyle* style = renderText->style(m_lineInfo.isFirstLine());
676 m_width.fitBelowFloats(m_lineInfo.isFirstLine());
858 m_width.fitBelowFloats(m_lineInfo.isFirstLine());
879 m_width.fitBelowFloats(m_lineInfo.isFirstLine());
891 m_width.fitBelowFloats(m_lineInfo.isFirstLine());
903 inline IndentTextOrNot requiresIndent(bool isFirstLine, bool isAfterHardLineBreak, RenderStyle* style) argument
906 if (isFirstLine || (isAfterHardLineBreak && style->textIndentLine()) == TextIndentEachLine)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlockLineLayout.cpp124 parentBox->setFirstLineStyleBit(lineInfo.isFirstLine());
361 renderer->getOverhang(lineInfo.isFirstLine(), renderer->style()->isLeftToRightDirection() ? previousObject : nextObject, renderer->style()->isLeftToRightDirection() ? nextObject : previousObject, startOverhang, endOverhang);
372 const Font& font = renderer->style(lineInfo.isFirstLine())->font();
389 const Font& font = renderer->style(lineInfo.isFirstLine())->font();
419 measuredWidth += renderer->width(wordMeasurement.startOffset, wordLength, xPos, run->direction(), lineInfo.isFirstLine());
438 measuredWidth = renderer->width(run->m_start, run->m_stop - run->m_start, xPos, run->direction(), lineInfo.isFirstLine(), &fallbackFonts, &glyphOverflow);
554 bool isFirstLine = lineInfo.isFirstLine() && !(isAnonymousBlock() && parent()->slowFirstChild() != this); local
556 IndentTextOrNot shouldIndentText = requiresIndent(isFirstLine, isAfterHardLineBreak, style());
560 updateLogicalInlinePositions(this, lineLogicalLeft, lineLogicalRight, availableLogicalWidth, isFirstLine, shouldIndentTex
[all...]
H A DRenderBlock.cpp3420 LayoutUnit RenderBlock::minLineHeightForReplacedRenderer(bool isFirstLine, LayoutUnit replacedHeight) const argument
3425 if (!(style(isFirstLine)->lineBoxContain() & LineBoxContainBlock))
3428 return std::max<LayoutUnit>(replacedHeight, lineHeight(isFirstLine, isHorizontalWritingMode() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes));

Completed in 1672 milliseconds