Home
last modified time | relevance | path

Searched refs:layoutRoot (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DTextAutosizer.cpp128 bool TextAutosizer::processSubtree(RenderObject* layoutRoot) in processSubtree() argument
132 …if (!m_document->settings() || !m_document->settings()->textAutosizingEnabled() || layoutRoot->vie… in processSubtree()
151 …RenderBlock* container = layoutRoot->isRenderBlock() ? toRenderBlock(layoutRoot) : layoutRoot->con… in processSubtree()
167 processCluster(clusterInfo, container, layoutRoot, windowInfo); in processSubtree()
168 InspectorInstrumentation::didAutosizeText(layoutRoot); in processSubtree()
DTextAutosizer.h49 bool processSubtree(RenderObject* layoutRoot);
DRenderObject.cpp2540 if (view->layoutRoot() == this) { in clearLayoutRootIfNeeded()
DRenderBox.cpp2282 if (node() && view()->frameView() && view()->frameView()->layoutRoot(true) == this) in computeLogicalWidthInRegion()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.h100 RenderObject* layoutRoot(bool onlyDuringLayout = false) const;
394 virtual void gatherDebugLayoutRects(RenderObject* layoutRoot);
DFrameView.cpp804 RenderObject* FrameView::layoutRoot(bool onlyDuringLayout) const in layoutRoot() function in WebCore::FrameView
1218 void FrameView::gatherDebugLayoutRects(RenderObject* layoutRoot) in gatherDebugLayoutRects() argument
1224 if (!layoutRoot->enclosingLayer()->hasCompositedLayerMapping()) in gatherDebugLayoutRects()
1226 …GraphicsLayer* graphicsLayer = layoutRoot->enclosingLayer()->compositedLayerMapping()->mainGraphic… in gatherDebugLayoutRects()
1231 for (RenderObject* renderer = layoutRoot; renderer; renderer = renderer->nextInPreOrder()) { in gatherDebugLayoutRects()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorTimelineAgent.cpp480 RenderObject* root = frame->view()->layoutRoot(); in willLayout()