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

  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineTextBox.h 43 virtual int selectionTop() { return m_y; }
  /external/webkit/Source/WebCore/rendering/
RootInlineBox.h 56 int selectionTop() const;
58 int selectionHeight() const { return max(0, selectionBottom() - selectionTop()); }
RootInlineBox.cpp 155 FloatRect rootRect(0, selectionTop(), logicalWidth(), selectionHeight());
173 FloatRect rootRect(tx + x(), ty + selectionTop(), logicalWidth(), selectionHeight());
399 int RootInlineBox::selectionTop() const
401 int selectionTop = m_lineTop;
404 selectionTop -= !renderer()->style()->isFlippedLinesWritingMode() ? computeOverAnnotationAdjustment(m_lineTop) : computeUnderAnnotationAdjustment(m_lineTop);
407 return selectionTop;
410 if (prevBottom < selectionTop && block()->containsFloats()) {
416 int newLeft = block()->logicalLeftOffsetForLine(selectionTop, false);
417 int newRight = block()->logicalRightOffsetForLine(selectionTop, false);
419 return selectionTop;
    [all...]
RenderReplaced.cpp 178 int selTop = ty + m_inlineBoxWrapper->root()->selectionTop();
284 int top = root->selectionTop();
331 int newLogicalTop = root->block()->style()->isFlippedBlocksWritingMode() ? m_inlineBoxWrapper->logicalBottom() - root->selectionBottom() : root->selectionTop() - m_inlineBoxWrapper->logicalTop();
EllipsisBox.cpp 78 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight()));
94 int y = root()->selectionTop();
InlineTextBox.h 93 int selectionTop();
InlineTextBox.cpp 96 int InlineTextBox::selectionTop()
98 return root()->selectionTop();
182 int selTop = selectionTop();
    [all...]
RenderLineBoxList.cpp 197 int logicalTop = min(box->logicalTopVisualOverflow(root->lineTop()), root->selectionTop()) - renderer->maximalOutlineSize(paintInfo.phase);
RenderText.cpp 455 if (lastTextBox() && pointBlockDirection >= lastTextBox()->root()->selectionTop() && pointLineDirection >= lastTextBox()->logicalRight()) {
465 if (pointBlockDirection >= rootBox->selectionTop()) {
512 int top = box->root()->selectionTop();
    [all...]
RenderListMarker.cpp     [all...]
RenderBlock.cpp     [all...]
RenderBox.cpp     [all...]

Completed in 314 milliseconds