Searched refs:selectionBottom (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRootInlineBox.h67 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;
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...]
H A DEllipsisBox.cpp122 LayoutUnit selectionBottom = root().selectionBottom(); local
125 const int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - top);
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 DInlineTextBox.h102 LayoutUnit selectionBottom();
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 DRenderReplaced.cpp478 LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
520 LayoutUnit newLogicalTop = root.block().style()->isFlippedBlocksWritingMode() ? inlineBoxWrapper()->logicalBottom() - root.selectionBottom() : root.selectionTop() - inlineBoxWrapper()->logicalTop();
H A DInlineFlowBox.h192 void placeBoxesInBlockDirection(LayoutUnit logicalTop, LayoutUnit maxHeight, int maxAscent, bool strictMode, LayoutUnit& lineTop, LayoutUnit& lineBottom, LayoutUnit& selectionBottom, bool& setLineTop,
H A DRenderListMarker.cpp1123 LayoutUnit newLogicalTop = root.block().style()->isFlippedBlocksWritingMode() ? inlineBoxWrapper()->logicalBottom() - root.selectionBottom() : root.selectionTop() - inlineBoxWrapper()->logicalTop();
H A DRenderBlockFlow.cpp2784 lastLogicalTop = rootBlock->blockDirectionOffset(offsetFromRootBlock) + lastSelectedLine->selectionBottom();
2785 lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, lastSelectedLine->selectionBottom());
2786 lastLogicalRight = logicalRightSelectionOffset(rootBlock, lastSelectedLine->selectionBottom());
H A DRenderText.cpp616 LayoutUnit bottom = rootBox.selectionBottom();
H A DRenderBlock.cpp2665 if (pointInLogicalContents.y() < root->selectionBottom() || (blocksAreFlipped && pointInLogicalContents.y() == root->selectionBottom())) {

Completed in 155 milliseconds