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

  /external/chromium_org/third_party/WebKit/Source/core/paint/
ViewPainter.cpp 32 static inline bool rendererObscuresBackground(RenderBox* rootBox)
34 ASSERT(rootBox);
35 RenderStyle* style = rootBox->style();
42 if (rootBox->compositingState() == PaintsIntoOwnBacking)
45 const RenderObject* rootRenderer = rootBox->rendererForRootBackground();
62 if (RenderBox* rootBox = documentElement ? toRenderBox(documentElement->renderer()) : 0)
63 shouldPaintBackground = !rootFillsViewportBackground(rootBox) || !rendererObscuresBackground(rootBox);
86 bool ViewPainter::rootFillsViewportBackground(RenderBox* rootBox) const
88 ASSERT(rootBox);
    [all...]
ViewPainter.h 23 bool rootFillsViewportBackground(RenderBox* rootBox) const;
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/
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();
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...]
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...]
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/editing/
RenderedPosition.h 54 RootInlineBox* rootBox() { return m_inlineBox ? &m_inlineBox->root() : 0; }
VisibleUnits.cpp 230 RootInlineBox* previousRoot = renderedPosition.rootBox();
271 RootInlineBox* nextRoot = renderedPosition.rootBox();
711 RootInlineBox* rootBox = RenderedPosition(c).rootBox();
712 if (!rootBox) {
725 startNode = rootBox->getLogicalStartBoxWithNode(startBox);
731 startBox = rootBox->firstLeafChild();
779 RootInlineBox* rootBox = RenderedPosition(c).rootBox();
780 if (!rootBox) {
    [all...]
  /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 161 milliseconds