• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/platform/graphics/

Lines Matching defs:GraphicsLayer

30 #include "GraphicsLayer.h"
49 typedef HashMap<const GraphicsLayer*, Vector<FloatRect> > RepaintMap;
76 GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client)
107 GraphicsLayer::~GraphicsLayer()
113 void GraphicsLayer::willBeDestroyed()
130 void GraphicsLayer::setParent(GraphicsLayer* layer)
136 bool GraphicsLayer::hasAncestor(GraphicsLayer* ancestor) const
138 for (GraphicsLayer* curr = parent(); curr; curr = curr->parent()) {
146 bool GraphicsLayer::setChildren(const Vector<GraphicsLayer*>& newChildren)
161 void GraphicsLayer::addChild(GraphicsLayer* childLayer)
172 void GraphicsLayer::addChildAtIndex(GraphicsLayer* childLayer, int index)
183 void GraphicsLayer::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling)
203 void GraphicsLayer::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer* sibling)
223 bool GraphicsLayer::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
244 void GraphicsLayer::removeAllChildren()
247 GraphicsLayer* curLayer = m_children[0];
253 void GraphicsLayer::removeFromParent()
268 void GraphicsLayer::noteDeviceOrPageScaleFactorChangedIncludingDescendants()
278 const Vector<GraphicsLayer*>& childLayers = children();
284 void GraphicsLayer::setReplicatedByLayer(GraphicsLayer* layer)
298 void GraphicsLayer::setOffsetFromRenderer(const IntSize& offset, ShouldSetNeedsDisplay shouldSetNeedsDisplay)
310 void GraphicsLayer::setSize(const FloatSize& size)
321 void GraphicsLayer::setBackgroundColor(const Color& color)
326 void GraphicsLayer::paintGraphicsLayerContents(GraphicsContext& context, const IntRect& clip)
339 String GraphicsLayer::animationNameForTransition(AnimatedPropertyID property)
349 void GraphicsLayer::suspendAnimations(double)
353 void GraphicsLayer::resumeAnimations()
357 void GraphicsLayer::getDebugBorderInfo(Color& color, float& width) const
381 void GraphicsLayer::updateDebugIndicators()
392 void GraphicsLayer::setZPosition(float position)
397 float GraphicsLayer::accumulatedOpacity() const
405 void GraphicsLayer::distributeOpacity(float accumulatedOpacity)
428 int GraphicsLayer::validateFilterOperations(const KeyframeValueList& valueList)
471 int GraphicsLayer::validateTransformOperations(const KeyframeValueList& valueList, bool& hasBigRotation)
537 double GraphicsLayer::backingStoreMemoryEstimate() const
546 void GraphicsLayer::resetTrackedRepaints()
551 void GraphicsLayer::addRepaintRect(const FloatRect& repaintRect)
568 void GraphicsLayer::writeIndent(TextStream& ts, int indent)
574 void GraphicsLayer::dumpLayer(TextStream& ts, int indent, LayerTreeAsTextBehavior behavior) const
577 ts << "(" << "GraphicsLayer";
580 ts << " " << static_cast<void*>(const_cast<GraphicsLayer*>(this));
590 void GraphicsLayer::dumpProperties(TextStream& ts, int indent, LayerTreeAsTextBehavior behavior) const
758 String GraphicsLayer::layerTreeAsText(LayerTreeAsTextBehavior behavior) const
769 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer)