Searched defs:selectionBottom (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DEllipsisBox.cpp122 LayoutUnit selectionBottom = root().selectionBottom(); local
125 const int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - top);
H A DInlineFlowBox.cpp610 void InlineFlowBox::placeBoxesInBlockDirection(LayoutUnit top, LayoutUnit maxHeight, int maxAscent, bool strictMode, LayoutUnit& lineTop, LayoutUnit& lineBottom, LayoutUnit& selectionBottom, bool& setLineTop, argument
714 selectionBottom = std::max(selectionBottom, newLogicalTop + boxHeight - borderPaddingHeight);
722 inlineFlowBox->placeBoxesInBlockDirection(top, maxHeight, maxAscent, strictMode, lineTop, lineBottom, selectionBottom, setLineTop,
736 selectionBottom = std::max<LayoutUnit>(selectionBottom, pixelSnappedLogicalBottom());
H A DInlineTextBox.cpp141 LayoutUnit InlineTextBox::selectionBottom() function in class:blink::InlineTextBox
143 return root().selectionBottom();
625 LayoutUnit selectionBottom = root().selectionBottom(); local
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();
977 int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1020 int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
H A DRootInlineBox.cpp231 LayoutUnit selectionBottom = heightOfBlock; local
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 function in class:blink::RootInlineBox
446 LayoutUnit selectionBottom = m_selectionBottom; local
449 selectionBottom += !renderer().style()->isFlippedLinesWritingMode() ? computeUnderAnnotationAdjustment(m_lineBottom) : computeOverAnnotationAdjustment(m_lineBottom);
452 return selectionBottom;
455 if (nextTop > selectionBottom
[all...]

Completed in 723 milliseconds