Searched refs:rootBox (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderRubyRun.cpp236 RootInlineBox* rootBox = rt->lastRootBox(); local
237 if (rootBox) {
240 lastLineRubyTextBottom = rootBox->logicalBottomLayoutOverflow();
246 RootInlineBox* rootBox = rb->firstRootBox(); local
247 if (rootBox)
248 firstLineTop = rootBox->logicalTopLayoutOverflow();
256 RootInlineBox* rootBox = rb->lastRootBox(); local
257 if (rootBox)
258 lastLineBottom = rootBox->logicalBottomLayoutOverflow();
H A DRenderView.cpp368 static inline bool rendererObscuresBackground(RenderBox* rootBox) argument
370 ASSERT(rootBox);
371 RenderStyle* style = rootBox->style();
378 if (rootBox->compositingState() == PaintsIntoOwnBacking)
381 const RenderObject* rootRenderer = rootBox->rendererForRootBackground();
388 bool RenderView::rootFillsViewportBackground(RenderBox* rootBox) const
390 ASSERT(rootBox);
392 if (!rootBox->isSVG())
395 return rootBox->frameRect().contains(frameRect());
427 if (RenderBox* rootBox
[all...]
H A DRenderInline.cpp574 RootInlineBox& rootBox = currBox->inlineBoxWrapper()->root(); local
575 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent());
576 int logicalHeight = container->style(rootBox.isFirstLineStyle())->font().fontMetrics().height();
589 RootInlineBox& rootBox = childLine->root(); local
590 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox
607 RootInlineBox& rootBox = childText->root(); local
[all...]
H A DRenderReplaced.cpp509 RootInlineBox* rootBox = box ? &box->root() : 0; local
511 LayoutUnit top = rootBox ? rootBox->selectionTop() : logicalTop();
512 LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
H A DInlineFlowBox.cpp504 void InlineFlowBox::computeLogicalBoxHeights(RootInlineBox* rootBox, LayoutUnit& maxPositionTop, LayoutUnit& maxPositionBottom, argument
532 rootBox->ascentAndDescentForBox(rootBox, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
560 curr->setLogicalTop(rootBox->verticalPositionForBox(curr, verticalPositionCache).toFloat());
564 rootBox->ascentAndDescentForBox(curr, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
595 inlineFlowBox->computeLogicalBoxHeights(rootBox, maxPositionTop, maxPositionBottom, maxAscent, maxDescent,
1066 RootInlineBox& rootBox = root(); local
1069 LayoutUnit bottom = min(rootBox.lineBottom(), top + logicalHeight);
1070 top = max(rootBox.lineTop(), top);
1238 const RootInlineBox& rootBox local
[all...]
H A DRenderView.h197 bool rootFillsViewportBackground(RenderBox* rootBox) const;
H A DRenderText.cpp613 RootInlineBox& rootBox = box->root(); local
614 LayoutUnit top = min(rootBox.selectionTop(), rootBox.lineTop());
616 LayoutUnit bottom = rootBox.selectionBottom();
617 if (rootBox.nextRootBox())
618 bottom = min(bottom, rootBox.nextRootBox()->lineTop());
H A DRenderBlockFlow.cpp1673 RootInlineBox* rootBox = createRootInlineBox(); local
1674 m_lineBoxes.appendLineBox(rootBox);
1676 if (UNLIKELY(AXObjectCache::accessibilityEnabled()) && m_lineBoxes.firstLineBox() == rootBox) {
1681 return rootBox;
H A DRenderBox.cpp3949 RootInlineBox& rootBox = box->root(); local
3950 LayoutUnit top = rootBox.lineTop();
3952 rect.setHeight(rootBox.lineBottom() - top);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DRenderedPosition.h52 RootInlineBox* rootBox() { return m_inlineBox ? &m_inlineBox->root() : 0; } function in class:WebCore::RenderedPosition
H A DVisibleUnits.cpp230 RootInlineBox* previousRoot = renderedPosition.rootBox();
271 RootInlineBox* nextRoot = renderedPosition.rootBox();
717 RootInlineBox* rootBox = RenderedPosition(c).rootBox();
718 if (!rootBox) {
731 startNode = rootBox->getLogicalStartBoxWithNode(startBox);
737 startBox = rootBox->firstLeafChild();
785 RootInlineBox* rootBox = RenderedPosition(c).rootBox();
786 if (!rootBox) {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGText.cpp452 RootInlineBox* rootBox = firstRootBox(); local
453 if (!rootBox)
456 ASSERT(!rootBox->nextRootBox());
459 InlineBox* closestBox = toSVGRootInlineBox(rootBox)->closestLeafChildForPosition(pointInContents);

Completed in 1006 milliseconds