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

  /external/webkit/Source/WebCore/rendering/
RenderRubyRun.cpp 237 RootInlineBox* rootBox = rt->lastRootBox();
238 if (rootBox) {
241 lastLineRubyTextBottom = rootBox->logicalBottomLayoutOverflow();
247 RootInlineBox* rootBox = rb->firstRootBox();
248 if (rootBox)
249 firstLineTop = rootBox->logicalTopLayoutOverflow();
257 RootInlineBox* rootBox = rb->lastRootBox();
258 if (rootBox)
259 lastLineBottom = rootBox->logicalBottomLayoutOverflow();
RenderListItem.cpp 268 RootInlineBox* rootBox = m_marker->inlineBoxWrapper()->root();
269 int lineTop = rootBox->lineTop();
270 int lineBottom = rootBox->lineBottom();
RenderView.cpp 226 RenderBox* rootBox = rootRenderer->isBox() ? toRenderBox(rootRenderer) : 0;
227 rootFillsViewport = rootBox && !rootBox->x() && !rootBox->y() && rootBox->width() >= width() && rootBox->height() >= height();
RenderInline.cpp 501 RootInlineBox* rootBox = currBox->inlineBoxWrapper()->root();
502 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent());
503 int logicalHeight = container->style(rootBox->isFirstLineStyle())->font().fontMetrics().height();
518 RootInlineBox* rootBox = childLine->root();
519 int logicalTop = rootBox->logicalTop() + (rootBox->renderer()->style(rootBox->isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox->isFirstLineStyle() (…)
    [all...]
InlineFlowBox.cpp 478 void InlineFlowBox::computeLogicalBoxHeights(RootInlineBox* rootBox, int& maxPositionTop, int& maxPositionBottom,
506 rootBox->ascentAndDescentForBox(rootBox, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
534 curr->setLogicalTop(rootBox->verticalPositionForBox(curr, verticalPositionCache));
538 rootBox->ascentAndDescentForBox(curr, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
569 inlineFlowBox->computeLogicalBoxHeights(rootBox, maxPositionTop, maxPositionBottom, maxAscent, maxDescent,
    [all...]
RenderText.cpp 499 RootInlineBox* rootBox = box->root();
500 if (pointBlockDirection >= rootBox->selectionTop()) {
501 int bottom = rootBox->selectionBottom();
502 if (rootBox->nextRootBox())
503 bottom = min(bottom, rootBox->nextRootBox()->lineTop());
    [all...]
RenderBox.cpp     [all...]
RenderBlock.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGText.cpp 212 RootInlineBox* rootBox = firstRootBox();
213 if (!rootBox)
216 ASSERT(rootBox->isSVGRootInlineBox());
217 ASSERT(!rootBox->nextRootBox());
220 InlineBox* closestBox = static_cast<SVGRootInlineBox*>(rootBox)->closestLeafChildForPosition(pointInContents);

Completed in 239 milliseconds