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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.h 54 RootInlineBox* rootBox() { return m_inlineBox ? &m_inlineBox->root() : 0; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRubyRun.cpp 225 RootInlineBox* rootBox = rt->lastRootBox();
226 if (rootBox) {
229 lastLineRubyTextBottom = rootBox->logicalBottomLayoutOverflow();
235 RootInlineBox* rootBox = rb->firstRootBox();
236 if (rootBox)
237 firstLineTop = rootBox->logicalTopLayoutOverflow();
245 RootInlineBox* rootBox = rb->lastRootBox();
246 if (rootBox)
247 lastLineBottom = rootBox->logicalBottomLayoutOverflow();
RenderReplaced.cpp 475 RootInlineBox* rootBox = box ? &box->root() : 0;
477 LayoutUnit top = rootBox ? rootBox->selectionTop() : logicalTop();
478 LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
InlineFlowBox.cpp 513 void InlineFlowBox::computeLogicalBoxHeights(RootInlineBox* rootBox, LayoutUnit& maxPositionTop, LayoutUnit& maxPositionBottom,
541 rootBox->ascentAndDescentForBox(rootBox, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
569 curr->setLogicalTop(rootBox->verticalPositionForBox(curr, verticalPositionCache).toFloat());
573 rootBox->ascentAndDescentForBox(curr, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
604 inlineFlowBox->computeLogicalBoxHeights(rootBox, maxPositionTop, maxPositionBottom, maxAscent, maxDescent,
    [all...]
RenderInline.cpp 592 RootInlineBox& rootBox = currBox->inlineBoxWrapper()->root();
593 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent());
594 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
607 RootInlineBox& rootBox = childLine->root();
608 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())- (…)
    [all...]
RenderText.cpp 613 RootInlineBox& rootBox = box->root();
614 LayoutUnit top = std::min(rootBox.selectionTop(), rootBox.lineTop());
616 LayoutUnit bottom = rootBox.selectionBottom();
617 if (rootBox.nextRootBox())
618 bottom = std::min(bottom, rootBox.nextRootBox()->lineTop());
    [all...]
RenderBlockFlow.cpp     [all...]
RenderBox.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlineFlowBoxPainter.cpp 331 const RootInlineBox& rootBox = m_inlineFlowBox.root();
334 LayoutUnit bottom = std::min(rootBox.lineBottom(), logicalTop + logicalHeight);
335 logicalTop = std::max(rootBox.lineTop(), logicalTop);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGText.cpp 450 RootInlineBox* rootBox = firstRootBox();
451 if (!rootBox)
454 ASSERT(!rootBox->nextRootBox());
457 InlineBox* closestBox = toSVGRootInlineBox(rootBox)->closestLeafChildForPosition(pointInContents);

Completed in 370 milliseconds