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

  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.h 33 #include "GraphicsLayer.h"
77 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); }
81 GraphicsLayer* clippingLayer() const { return m_clippingLayer.get(); }
85 GraphicsLayer* ancestorClippingLayer() const { return m_ancestorClippingLayer.get(); }
88 GraphicsLayer* foregroundLayer() const { return m_foregroundLayer.get(); }
92 GraphicsLayer* parentForSublayers() const { return m_clippingLayer ? m_clippingLayer.get() : m_graphicsLayer.get(); }
93 GraphicsLayer* childForSuperlayers() const { return m_ancestorClippingLayer ? m_ancestorClippingLayer.get() : m_graphicsLayer.get(); }
96 // their content is rendered via callbacks from GraphicsLayer. However, the document
97 // layer is special, because it has a GraphicsLayer to act as a container for the GraphicsLayer
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 90 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerClient* client)
101 GraphicsLayer(client),
136 GraphicsLayer::setName(name);
145 bool GraphicsLayerAndroid::setChildren(const Vector<GraphicsLayer*>& children)
147 bool childrenChanged = GraphicsLayer::setChildren(children);
156 void GraphicsLayerAndroid::addChild(GraphicsLayer* childLayer)
162 GraphicsLayer::addChild(childLayer);
167 void GraphicsLayerAndroid::addChildAtIndex(GraphicsLayer* childLayer, int index)
170 GraphicsLayer::addChildAtIndex(childLayer, index)
    [all...]

Completed in 1152 milliseconds