Home | History | Annotate | Download | only in android

Lines Matching refs:GraphicsLayerAndroid

17 #define LOG_TAG "GraphicsLayerAndroid"
21 #include "GraphicsLayerAndroid.h"
69 inline int GraphicsLayerAndroid::instancesCount()
92 return new GraphicsLayerAndroid(client);
100 GraphicsLayerAndroid::GraphicsLayerAndroid(GraphicsLayerClient* client) :
122 GraphicsLayerAndroid::~GraphicsLayerAndroid()
134 void GraphicsLayerAndroid::setName(const String& name)
139 NativeLayer GraphicsLayerAndroid::nativeLayer() const
145 bool GraphicsLayerAndroid::setChildren(const Vector<GraphicsLayer*>& children)
156 void GraphicsLayerAndroid::addChild(GraphicsLayer* childLayer)
167 void GraphicsLayerAndroid::addChildAtIndex(GraphicsLayer* childLayer, int index)
175 void GraphicsLayerAndroid::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling)
183 void GraphicsLayerAndroid::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer* sibling)
191 bool GraphicsLayerAndroid::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
202 void GraphicsLayerAndroid::setReplicatedLayer(GraphicsLayer* layer)
206 GraphicsLayerAndroid* graphicsLayer = static_cast<GraphicsLayerAndroid*>(m_replicatedLayer);
210 GraphicsLayerAndroid* maskLayer = static_cast<GraphicsLayerAndroid*>(GraphicsLayer::maskLayer());
218 void GraphicsLayerAndroid::removeFromParent()
221 GraphicsLayerAndroid* parent = static_cast<GraphicsLayerAndroid*>(m_parent);
230 void GraphicsLayerAndroid::updatePositionedLayers()
298 void GraphicsLayerAndroid::setPosition(const FloatPoint& point)
313 void GraphicsLayerAndroid::setPreserves3D(bool preserves3D)
323 void GraphicsLayerAndroid::setAnchorPoint(const FloatPoint3D& point)
333 void GraphicsLayerAndroid::setSize(const FloatSize& size)
358 void GraphicsLayerAndroid::setBackfaceVisibility(bool b)
368 void GraphicsLayerAndroid::setTransform(const TransformationMatrix& t)
378 void GraphicsLayerAndroid::setChildrenTransform(const TransformationMatrix& t)
395 void GraphicsLayerAndroid::setMaskLayer(GraphicsLayer* layer)
405 void GraphicsLayerAndroid::setMasksToBounds(bool masksToBounds)
414 void GraphicsLayerAndroid::setDrawsContent(bool drawsContent)
427 void GraphicsLayerAndroid::setBackgroundColor(const Color& color)
439 void GraphicsLayerAndroid::clearBackgroundColor()
449 void GraphicsLayerAndroid::setContentsOpaque(bool opaque)
459 void GraphicsLayerAndroid::setOpacity(float opacity)
474 void GraphicsLayerAndroid::setNeedsDisplay()
509 void GraphicsLayerAndroid::updateScrollingLayers()
552 static_cast<GraphicsLayerAndroid*>(m_parent)->m_needsSyncChildren = true;
575 static_cast<GraphicsLayerAndroid*>(m_parent)->m_needsSyncChildren = true;
583 void GraphicsLayerAndroid::updateFixedBackgroundLayers() {
651 static_cast<GraphicsLayerAndroid*>(m_parent)->m_needsSyncChildren = true;
660 void GraphicsLayerAndroid::updateScrollOffset() {
683 bool GraphicsLayerAndroid::repaint()
786 GraphicsLayerAndroid* replicatedLayer = static_cast<GraphicsLayerAndroid*>(replicaLayer());
788 GraphicsLayerAndroid* mask = static_cast<GraphicsLayerAndroid*>(replicatedLayer->maskLayer());
834 void GraphicsLayerAndroid::paintContents(GraphicsContext* gc, IntRect& dirty)
839 bool GraphicsLayerAndroid::paintContext(LayerAndroid* layer,
860 void GraphicsLayerAndroid::setNeedsDisplayInRect(const FloatRect& rect)
878 void GraphicsLayerAndroid::pauseDisplay(bool state)
885 bool GraphicsLayerAndroid::addAnimation(const KeyframeValueList& valueList,
912 bool GraphicsLayerAndroid::createAnimationFromKeyframes(const KeyframeValueList& valueList,
952 void GraphicsLayerAndroid::needsNotifyClient()
958 bool GraphicsLayerAndroid::createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList,
994 void GraphicsLayerAndroid::removeAnimationsForProperty(AnimatedPropertyID anID)
1001 void GraphicsLayerAndroid::removeAnimationsForKeyframes(const String& keyframesName)
1008 void GraphicsLayerAndroid::pauseAnimation(const String& keyframesName)
1013 void GraphicsLayerAndroid::suspendAnimations(double time)
1018 void GraphicsLayerAndroid::resumeAnimations()
1023 void GraphicsLayerAndroid::setContentsToImage(Image* image)
1048 void GraphicsLayerAndroid::setContentsToMedia(PlatformLayer* mediaLayer)
1067 GraphicsLayerAndroid* parent = static_cast<GraphicsLayerAndroid*>(m_parent);
1077 PlatformLayer* GraphicsLayerAndroid::platformLayer() const
1084 void GraphicsLayerAndroid::setDebugBackgroundColor(const Color& color)
1088 void GraphicsLayerAndroid::setDebugBorder(const Color& color, float borderWidth)
1093 void GraphicsLayerAndroid::setZPosition(float position)
1102 void GraphicsLayerAndroid::askForSync()
1111 void GraphicsLayerAndroid::syncChildren()
1118 GraphicsLayerAndroid* replicatedLayer = static_cast<GraphicsLayerAndroid*>(replicaLayer());
1141 void GraphicsLayerAndroid::syncMask()
1155 void GraphicsLayerAndroid::gatherRootLayers(Vector<const RenderLayer*>& list)
1173 GraphicsLayerAndroid* layer = static_cast<GraphicsLayerAndroid*>(m_children[i]);
1178 void GraphicsLayerAndroid::syncCompositingStateForThisLayerOnly()
1196 void GraphicsLayerAndroid::syncCompositingState()
1204 void GraphicsLayerAndroid::notifyClientAnimationStarted()
1207 static_cast<GraphicsLayerAndroid*>(m_children[i])->notifyClientAnimationStarted();