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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRubyRun.cpp 244 RootInlineBox* rootBox = rt->lastRootBox();
245 if (rootBox) {
248 lastLineRubyTextBottom = rootBox->logicalBottomLayoutOverflow();
254 RootInlineBox* rootBox = rb->firstRootBox();
255 if (rootBox)
256 firstLineTop = rootBox->logicalTopLayoutOverflow();
264 RootInlineBox* rootBox = rb->lastRootBox();
265 if (rootBox)
266 lastLineBottom = rootBox->logicalBottomLayoutOverflow();
RenderInline.cpp 563 RootInlineBox* rootBox = currBox->inlineBoxWrapper()->root();
564 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
565 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
578 RootInlineBox* rootBox = childLine->root();
579 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle() (…)
    [all...]
RenderReplaced.cpp 525 RootInlineBox* rootBox = box ? box->root() : 0;
527 LayoutUnit top = rootBox ? rootBox->selectionTop() : logicalTop();
528 LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
RenderListItem.cpp 346 RootInlineBox* rootBox = m_marker->inlineBoxWrapper()->root();
347 LayoutUnit lineTop = rootBox->lineTop();
348 LayoutUnit lineBottom = rootBox->lineBottom();
InlineFlowBox.cpp 501 void InlineFlowBox::computeLogicalBoxHeights(RootInlineBox* rootBox, LayoutUnit& maxPositionTop, LayoutUnit& maxPositionBottom,
529 rootBox->ascentAndDescentForBox(rootBox, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
557 curr->setLogicalTop(rootBox->verticalPositionForBox(curr, verticalPositionCache));
561 rootBox->ascentAndDescentForBox(curr, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
592 inlineFlowBox->computeLogicalBoxHeights(rootBox, maxPositionTop, maxPositionBottom, maxAscent, maxDescent,
    [all...]
RenderView.cpp 542 RenderBox* rootBox = rootRenderer->isBox() ? toRenderBox(rootRenderer) : 0;
543 rootFillsViewport = rootBox && !rootBox->x() && !rootBox->y() && rootBox->width() >= width() && rootBox->height() >= height();
    [all...]
RenderText.cpp 628 RootInlineBox* rootBox = box->root();
629 LayoutUnit top = min(rootBox->selectionTop(), rootBox->lineTop());
631 LayoutUnit bottom = rootBox->selectionBottom();
632 if (rootBox->nextRootBox())
633 bottom = min(bottom, rootBox->nextRootBox()->lineTop());
    [all...]
RenderBlock.cpp     [all...]
RenderBox.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.h 52 RootInlineBox* rootBox() { return m_inlineBox ? m_inlineBox->root() : 0; }
VisibleUnits.cpp 228 RootInlineBox* previousRoot = renderedPosition.rootBox();
269 RootInlineBox* nextRoot = renderedPosition.rootBox();
720 RootInlineBox* rootBox = RenderedPosition(c).rootBox();
721 if (!rootBox) {
734 startNode = rootBox->getLogicalStartBoxWithNode(startBox);
740 startBox = rootBox->firstLeafChild();
793 RootInlineBox* rootBox = RenderedPosition(c).rootBox();
794 if (!rootBox) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGText.cpp 469 RootInlineBox* rootBox = firstRootBox();
470 if (!rootBox)
473 ASSERT(!rootBox->nextRootBox());
476 InlineBox* closestBox = toSVGRootInlineBox(rootBox)->closestLeafChildForPosition(pointInContents);

Completed in 112 milliseconds