Home
last modified time | relevance | path

Searched refs:layerTreeAsText (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.h216 String layerTreeAsText(Document*, unsigned flags, ExceptionState&) const;
217 String layerTreeAsText(Document*, ExceptionState&) const;
DInternals.idl170 // Flags for layerTreeAsText.
176 [RaisesException] DOMString layerTreeAsText(Document document, optional unsigned short flags);
DInternals.cpp1642 String Internals::layerTreeAsText(Document* document, ExceptionState& exceptionState) const in layerTreeAsText() function in WebCore::Internals
1644 return layerTreeAsText(document, 0, exceptionState); in layerTreeAsText()
1762 String Internals::layerTreeAsText(Document* document, unsigned flags, ExceptionState& exceptionStat… in layerTreeAsText() function in WebCore::Internals
1769 return document->frame()->layerTreeAsText(flags); in layerTreeAsText()
1795 return layer->compositedLayerMapping()->mainGraphicsLayer()->layerTreeAsText(flags); in elementLayerTreeAsText()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderLayerCompositor.h178 String layerTreeAsText(LayerTreeFlags);
DRenderLayerCompositor.cpp1355 String RenderLayerCompositor::layerTreeAsText(LayerTreeFlags flags) in layerTreeAsText() function in WebCore::RenderLayerCompositor
1370 String layerTreeText = rootLayer->layerTreeAsText(flags); in layerTreeAsText()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrame.h167 String layerTreeAsText(unsigned flags = 0) const;
DFrame.cpp491 String Frame::layerTreeAsText(unsigned flags) const in layerTreeAsText() function in WebCore::Frame
498 return contentRenderer()->compositor()->layerTreeAsText(static_cast<LayerTreeFlags>(flags)); in layerTreeAsText()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsLayer.h271 String layerTreeAsText(LayerTreeFlags = LayerTreeNormal) const;
DGraphicsLayer.cpp771 String GraphicsLayer::layerTreeAsText(LayerTreeFlags flags) const in layerTreeAsText() function in WebCore::GraphicsLayer
1254 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo); in showGraphicsLayerTree()
/external/chromium_org/third_party/WebKit/public/web/
DWebFrame.h675 virtual WebString layerTreeAsText(bool showDebugInfo = false) const = 0;
/external/chromium_org/third_party/WebKit/Source/web/
DWebFrameImpl.h236 virtual WebString layerTreeAsText(bool showDebugInfo = false) const;
DWebFrameImpl.cpp2062 WebString WebFrameImpl::layerTreeAsText(bool showDebugInfo) const in layerTreeAsText() function in blink::WebFrameImpl
2067 …return WebString(frame()->layerTreeAsText(showDebugInfo ? LayerTreeIncludesDebugInfo : LayerTreeNo… in layerTreeAsText()