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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.h 52 RootInlineBox* rootBox() { return m_inlineBox ? m_inlineBox->root() : 0; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListItem.cpp 334 RootInlineBox* rootBox = m_marker->inlineBoxWrapper()->root();
335 LayoutUnit lineTop = rootBox->lineTop();
336 LayoutUnit lineBottom = rootBox->lineBottom();
RenderRubyRun.cpp 243 RootInlineBox* rootBox = rt->lastRootBox();
244 if (rootBox) {
247 lastLineRubyTextBottom = rootBox->logicalBottomLayoutOverflow();
253 RootInlineBox* rootBox = rb->firstRootBox();
254 if (rootBox)
255 firstLineTop = rootBox->logicalTopLayoutOverflow();
263 RootInlineBox* rootBox = rb->lastRootBox();
264 if (rootBox)
265 lastLineBottom = rootBox->logicalBottomLayoutOverflow();
RenderReplaced.cpp 471 RootInlineBox* rootBox = box ? box->root() : 0;
473 LayoutUnit top = rootBox ? rootBox->selectionTop() : logicalTop();
474 LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
RenderView.cpp 474 RenderBox* rootBox = rootRenderer->isBox() ? toRenderBox(rootRenderer) : 0;
475 rootFillsViewport = rootBox && !rootBox->x() && !rootBox->y() && rootBox->width() >= width() && rootBox->height() >= height();
    [all...]
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...]
RenderInline.cpp 561 RootInlineBox* rootBox = currBox->inlineBoxWrapper()->root();
562 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
563 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
576 RootInlineBox* rootBox = childLine->root();
577 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle() (…)
    [all...]
RenderText.cpp 623 RootInlineBox* rootBox = box->root();
624 LayoutUnit top = min(rootBox->selectionTop(), rootBox->lineTop());
626 LayoutUnit bottom = rootBox->selectionBottom();
627 if (rootBox->nextRootBox())
628 bottom = min(bottom, rootBox->nextRootBox()->lineTop());
    [all...]
RenderBox.cpp     [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGText.cpp 469 RootInlineBox* rootBox = firstRootBox();
470 if (!rootBox)
473 ASSERT_WITH_SECURITY_IMPLICATION(rootBox->isSVGRootInlineBox());
474 ASSERT(!rootBox->nextRootBox());
477 InlineBox* closestBox = static_cast<SVGRootInlineBox*>(rootBox)->closestLeafChildForPosition(pointInContents);

Completed in 221 milliseconds