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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RootInlineBox.h 67 LayoutUnit selectionBottom() const;
68 LayoutUnit selectionHeight() const { return max<LayoutUnit>(0, selectionBottom() - selectionTop()); }
71 LayoutUnit selectionHeightAdjustedForPrecedingBlock() const { return max<LayoutUnit>(0, selectionBottom() - selectionTopAdjustedForPrecedingBlock()); }
76 void setLineTopBottomPositions(LayoutUnit top, LayoutUnit bottom, LayoutUnit topWithLeading, LayoutUnit bottomWithLeading, LayoutUnit selectionBottom = LayoutUnit::min())
82 m_selectionBottom = selectionBottom == LayoutUnit::min() ? bottom : selectionBottom;
RootInlineBox.cpp 231 LayoutUnit selectionBottom = heightOfBlock;
235 placeBoxesInBlockDirection(heightOfBlock, maxHeight, maxAscent, noQuirksMode, lineTop, lineBottom, selectionBottom, setLineTop,
242 setLineTopBottomPositions(lineTop, lineBottom, heightOfBlock, heightOfBlock + maxHeight, selectionBottom);
403 LayoutUnit prevBottom = prevRootBox()->selectionBottom();
435 LayoutUnit lastLineSelectionBottom = lastLine->selectionBottom() + offsetToBlockBefore.height();
444 LayoutUnit RootInlineBox::selectionBottom() const
446 LayoutUnit selectionBottom = m_selectionBottom;
449 selectionBottom += !renderer().style()->isFlippedLinesWritingMode() ? computeUnderAnnotationAdjustment(m_lineBottom) : computeOverAnnotationAdjustment(m_lineBottom);
452 return selectionBottom;
455 if (nextTop > selectionBottom && block().containsFloats())
    [all...]
EllipsisBox.cpp 122 LayoutUnit selectionBottom = root().selectionBottom();
125 const int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - top);
InlineTextBox.cpp 141 LayoutUnit InlineTextBox::selectionBottom()
143 return root().selectionBottom();
625 LayoutUnit selectionBottom = root().selectionBottom();
628 int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - selectionTop);
629 int selHeight = std::max(0, roundToInt(selectionBottom - selectionTop));
659 int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
    [all...]
InlineTextBox.h 102 LayoutUnit selectionBottom();
InlineFlowBox.cpp 610 void InlineFlowBox::placeBoxesInBlockDirection(LayoutUnit top, LayoutUnit maxHeight, int maxAscent, bool strictMode, LayoutUnit& lineTop, LayoutUnit& lineBottom, LayoutUnit& selectionBottom, bool& setLineTop,
    [all...]
RenderReplaced.cpp 478 LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
520 LayoutUnit newLogicalTop = root.block().style()->isFlippedBlocksWritingMode() ? inlineBoxWrapper()->logicalBottom() - root.selectionBottom() : root.selectionTop() - inlineBoxWrapper()->logicalTop();
InlineFlowBox.h 192 void placeBoxesInBlockDirection(LayoutUnit logicalTop, LayoutUnit maxHeight, int maxAscent, bool strictMode, LayoutUnit& lineTop, LayoutUnit& lineBottom, LayoutUnit& selectionBottom, bool& setLineTop,
RenderListMarker.cpp     [all...]
RenderBlockFlow.cpp     [all...]
RenderText.cpp 616 LayoutUnit bottom = rootBox.selectionBottom();
    [all...]
RenderBlock.cpp     [all...]

Completed in 737 milliseconds