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

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRootInlineBox.h74 LayoutUnit selectionBottom() const;
75 LayoutUnit selectionHeight() const { return std::max<LayoutUnit>(0, selectionBottom() - selectionTop()); }
78 LayoutUnit selectionHeightAdjustedForPrecedingBlock() const { return std::max<LayoutUnit>(0, selectionBottom() - selectionTopAdjustedForPrecedingBlock()); }
H A DRootInlineBox.cpp606 LayoutUnit prevBottom = prevRootBox() ? prevRootBox()->selectionBottom() : blockFlow().borderAndPaddingBefore();
639 LayoutUnit lastLineSelectionBottom = lastLine->selectionBottom() + offsetToBlockBefore.height();
648 LayoutUnit RootInlineBox::selectionBottom() const function in class:WebCore::RootInlineBox
650 LayoutUnit selectionBottom = m_lineBottom; local
653 selectionBottom += !renderer().style().isFlippedLinesWritingMode() ? computeUnderAnnotationAdjustment(m_lineBottom) : computeOverAnnotationAdjustment(m_lineBottom);
656 return selectionBottom;
659 if (nextTop > selectionBottom && blockFlow().containsFloats()) {
665 LayoutUnit newLeft = blockFlow().logicalLeftOffsetForLine(selectionBottom, false);
666 LayoutUnit newRight = blockFlow().logicalRightOffsetForLine(selectionBottom, false);
668 return selectionBottom;
[all...]
H A DInlineTextBox.cpp189 LayoutUnit InlineTextBox::selectionBottom() const function in class:WebCore::InlineTextBox
191 return root().selectionBottom();
745 LayoutUnit selectionBottom = rootBox.selectionBottom(); local
748 LayoutUnit deltaY = renderer().style().isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - selectionTop;
749 LayoutUnit selectionHeight = std::max<LayoutUnit>(0, selectionBottom - selectionTop);
784 LayoutUnit deltaY = renderer().style().isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1122 int deltaY = renderer().style().isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1186 LayoutUnit deltaY = renderer().style().isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
H A DInlineTextBox.h104 LayoutUnit selectionBottom() const;
H A DRenderReplaced.cpp514 LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
560 LayoutUnit newLogicalTop = rootBox.blockFlow().style().isFlippedBlocksWritingMode() ? m_inlineBoxWrapper->logicalBottom() - rootBox.selectionBottom() : rootBox.selectionTop() - m_inlineBoxWrapper->logicalTop();
H A DRenderBlockFlow.cpp3005 lastLogicalTop = blockDirectionOffset(rootBlock, offsetFromRootBlock) + lastSelectedLine->selectionBottom();
3006 lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, lastSelectedLine->selectionBottom(), cache);
3007 lastLogicalRight = logicalRightSelectionOffset(rootBlock, lastSelectedLine->selectionBottom(), cache);
3259 if (pointInLogicalContents.y() < root->selectionBottom() || (blocksAreFlipped && pointInLogicalContents.y() == root->selectionBottom())) {
H A DRenderImage.cpp93 LayoutUnit selectionTop = !containingBlock->style().isFlippedBlocksWritingMode() ? inlineBox->root().selectionTop() - logicalTop() : logicalBottom() - inlineBox->root().selectionBottom();
H A DRenderTextLineBoxes.cpp412 LayoutUnit bottom = rootBox.selectionBottom();
H A DRenderListMarker.cpp1169 LayoutUnit newLogicalTop = rootBox.blockFlow().style().isFlippedBlocksWritingMode() ? m_inlineBoxWrapper->logicalBottom() - rootBox.selectionBottom() : rootBox.selectionTop() - m_inlineBoxWrapper->logicalTop();

Completed in 189 milliseconds