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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RootInlineBox.cpp 393 LayoutUnit RootInlineBox::selectionTop() const
395 LayoutUnit selectionTop = m_lineTop;
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...]
RootInlineBox.h 66 LayoutUnit selectionTop() const;
68 LayoutUnit selectionHeight() const { return max<LayoutUnit>(0, selectionBottom() - selectionTop()); }
InlineTextBox.cpp 136 LayoutUnit InlineTextBox::selectionTop()
138 return root().selectionTop();
216 LayoutUnit selTop = selectionTop();
626 LayoutUnit selectionTop = root().selectionTopAdjustedForPrecedingBlock();
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...]
RenderReplaced.cpp 199 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();
EllipsisBox.cpp 123 LayoutUnit top = root().selectionTop();
InlineTextBox.h 101 LayoutUnit selectionTop();
RenderLineBoxList.cpp 189 LayoutUnit logicalTop = std::min<LayoutUnit>(box->logicalTopVisualOverflow(root.lineTop()), root.selectionTop());
RenderListMarker.cpp     [all...]
RenderText.cpp 614 LayoutUnit top = std::min(rootBox.selectionTop(), rootBox.lineTop());
649 int top = box->root().selectionTop();
    [all...]
RenderBlock.cpp     [all...]

Completed in 143 milliseconds