Searched refs:selectionTop (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRootInlineBox.cpp393 LayoutUnit RootInlineBox::selectionTop() const function in class:blink::RootInlineBox
395 LayoutUnit selectionTop = m_lineTop; local
398 selectionTop -= !renderer().style()->isFlippedLinesWritingMode() ? computeOverAnnotationAdjustment(m_lineTop) : computeUnderAnnotationAdjustment(m_lineTop);
401 return selectionTop;
404 if (prevBottom < selectionTop && block().containsFloats()) {
410 LayoutUnit newLeft = block().logicalLeftOffsetForLine(selectionTop, false);
411 LayoutUnit newRight = block().logicalRightOffsetForLine(selectionTop, false);
413 return selectionTop;
421 LayoutUnit top = selectionTop();
454 LayoutUnit nextTop = nextRootBox()->selectionTop();
[all...]
H A DRootInlineBox.h66 LayoutUnit selectionTop() const;
68 LayoutUnit selectionHeight() const { return max<LayoutUnit>(0, selectionBottom() - selectionTop()); }
H A DInlineTextBox.cpp136 LayoutUnit InlineTextBox::selectionTop() function in class:blink::InlineTextBox
138 return root().selectionTop();
216 LayoutUnit selTop = selectionTop();
626 LayoutUnit selectionTop = root().selectionTopAdjustedForPrecedingBlock(); 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();
1028 IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, IntPoint(x(), selectionTop()), selHeigh
[all...]
H A DRenderReplaced.cpp199 LayoutUnit selTop = paintOffset.y() + inlineBoxWrapper()->root().selectionTop();
477 LayoutUnit top = rootBox ? rootBox->selectionTop() : logicalTop();
520 LayoutUnit newLogicalTop = root.block().style()->isFlippedBlocksWritingMode() ? inlineBoxWrapper()->logicalBottom() - root.selectionBottom() : root.selectionTop() - inlineBoxWrapper()->logicalTop();
H A DEllipsisBox.cpp123 LayoutUnit top = root().selectionTop();
H A DInlineTextBox.h101 LayoutUnit selectionTop();
H A DRenderLineBoxList.cpp189 LayoutUnit logicalTop = std::min<LayoutUnit>(box->logicalTopVisualOverflow(root.lineTop()), root.selectionTop());
H A DRenderListMarker.cpp1123 LayoutUnit newLogicalTop = root.block().style()->isFlippedBlocksWritingMode() ? inlineBoxWrapper()->logicalBottom() - root.selectionBottom() : root.selectionTop() - inlineBoxWrapper()->logicalTop();
1631 LayoutRect rect(0, root.selectionTop() - y(), width(), root.selectionHeight());
H A DRenderText.cpp614 LayoutUnit top = std::min(rootBox.selectionTop(), rootBox.lineTop());
649 int top = box->root().selectionTop();
H A DRenderBlock.cpp2690 LayoutUnit firstRootBoxWithChildrenTop = std::min<LayoutUnit>(firstRootBoxWithChildren->selectionTop(), firstRootBoxWithChildren->logicalTop());

Completed in 1417 milliseconds