Searched refs:animationName (Results 1 - 23 of 23) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DWebKitAnimationEvent.cpp34 : animationName()
46 , m_animationName(initializer.animationName)
51 WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime) argument
53 , m_animationName(animationName)
62 const String& WebKitAnimationEvent::animationName() const function in class:WebCore::WebKitAnimationEvent
H A DWebKitAnimationEvent.idl29 [InitializedByEventConstructor] readonly attribute DOMString animationName;
H A DWebKitAnimationEvent.h36 String animationName; member in struct:WebCore::WebKitAnimationEventInit
46 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) argument
48 return adoptRef(new WebKitAnimationEvent(type, animationName, elapsedTime));
57 const String& animationName() const;
64 WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/clutter/
H A DGraphicsLayerClutter.h93 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOffset);
94 virtual void removeAnimation(const String& animationName);
110 bool animationIsRunning(const String& animationName) const
112 return m_runningAnimations.find(animationName) != m_runningAnimations.end();
138 void setAnimationOnLayer(PlatformClutterAnimation*, AnimatedPropertyID, const String& animationName, int index, double timeOffset);
139 bool removeClutterAnimationFromLayer(AnimatedPropertyID, const String& animationName, int index);
140 void pauseClutterAnimationOnLayer(AnimatedPropertyID, const String& animationName, int index, double timeOffset);
142 bool createAnimationFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset);
143 bool createTransformAnimationsFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset, const IntSize& boxSize);
152 bool appendToUncommittedAnimations(const KeyframeValueList&, const TransformOperations*, const Animation*, const String& animationName, cons
233 LayerPropertyAnimation(PassRefPtr<PlatformClutterAnimation> caAnimation, const String& animationName, AnimatedPropertyID property, int index, double timeOffset) argument
[all...]
H A DGraphicsLayerClutter.cpp219 static String animationIdentifier(const String& animationName, AnimatedPropertyID property, int index) argument
221 return animationName + '_' + String::number(property) + '_' + String::number(index);
1169 bool GraphicsLayerClutter::appendToUncommittedAnimations(const KeyframeValueList& valueList, const TransformOperations* operations, const Animation* animation, const String& animationName, const IntSize& boxSize, int animationIndex, double timeOffset, bool isMatrixAnimation) argument
1188 m_uncomittedAnimations.append(LayerPropertyAnimation(clutterAnimation, animationName, valueList.property(), animationIndex, timeOffset));
1192 bool GraphicsLayerClutter::createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset, const IntSize& boxSize) argument
1215 if (!appendToUncommittedAnimations(valueList, operations, animation, animationName, boxSize, animationIndex, timeOffset, isMatrixAnimation)) {
1224 bool GraphicsLayerClutter::createAnimationFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset) argument
1247 m_uncomittedAnimations.append(LayerPropertyAnimation(clutterAnimation, animationName, valueList.property(), animationIndex, timeOffset));
1252 bool GraphicsLayerClutter::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset) argument
1254 ASSERT(!animationName
1276 removeAnimation(const String& animationName) argument
1285 removeClutterAnimationFromLayer(AnimatedPropertyID property, const String& animationName, int index) argument
1299 pauseClutterAnimationOnLayer(AnimatedPropertyID property, const String& animationName, int index, double timeOffset) argument
1304 setAnimationOnLayer(PlatformClutterAnimation* clutterAnim, AnimatedPropertyID property, const String& animationName, int index, double timeOffset) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DKeyframeList.h66 KeyframeList(RenderObject*, const AtomicString& animationName) argument
67 : m_animationName(animationName)
77 const AtomicString& animationName() const { return m_animationName; } function in class:WebCore::KeyframeList
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/
H A DGraphicsLayerCA.h112 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOffset);
113 virtual void pauseAnimation(const String& animationName, double timeOffset);
114 virtual void removeAnimation(const String& animationName);
199 bool createAnimationFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset);
200 bool createTransformAnimationsFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset, const IntSize& boxSize);
202 bool createFilterAnimationsFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset);
225 bool animationIsRunning(const String& animationName) const
227 return m_runningAnimations.find(animationName) != m_runningAnimations.end();
362 void setAnimationOnLayer(PlatformCAAnimation*, AnimatedPropertyID, const String& animationName, int index, int subIndex, double timeOffset);
363 bool removeCAAnimationFromLayer(AnimatedPropertyID, const String& animationName, in
[all...]
H A DGraphicsLayerCA.cpp247 static String animationIdentifier(const String& animationName, AnimatedPropertyID property, int index, int subIndex) argument
249 return animationName + '_' + String::number(property) + '_' + String::number(index) + '_' + String::number(subIndex);
699 bool GraphicsLayerCA::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset) argument
701 ASSERT(!animationName.isEmpty());
713 createdAnimations = createTransformAnimationsFromKeyframes(valueList, anim, animationName, timeOffset, boxSize);
717 createdAnimations = createFilterAnimationsFromKeyframes(valueList, anim, animationName, timeOffset);
721 createdAnimations = createAnimationFromKeyframes(valueList, anim, animationName, timeOffset);
729 void GraphicsLayerCA::pauseAnimation(const String& animationName, double timeOffset) argument
731 if (!animationIsRunning(animationName))
734 AnimationsToProcessMap::iterator it = m_animationsToProcess.find(animationName);
746 removeAnimation(const String& animationName) argument
1945 setAnimationOnLayer(PlatformCAAnimation* caAnim, AnimatedPropertyID property, const String& animationName, int index, int subIndex, double timeOffset) argument
1984 removeCAAnimationFromLayer(AnimatedPropertyID property, const String& animationName, int index, int subIndex) argument
2009 pauseCAAnimationOnLayer(AnimatedPropertyID property, const String& animationName, int index, int subIndex, double timeOffset) argument
2056 createAnimationFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset) argument
2084 appendToUncommittedAnimations(const KeyframeValueList& valueList, const TransformOperations* operations, const Animation* animation, const String& animationName, const IntSize& boxSize, int animationIndex, double timeOffset, bool isMatrixAnimation) argument
2107 createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset, const IntSize& boxSize) argument
2160 appendToUncommittedAnimations(const KeyframeValueList& valueList, const FilterOperation* operation, const Animation* animation, const String& animationName, int animationIndex, double timeOffset) argument
2195 createFilterAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DGraphicsLayerBlackBerry.h99 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOffset);
100 virtual void pauseAnimation(const String& animationName, double timeOffset);
101 virtual void removeAnimation(const String& animationName);
H A DGraphicsLayerBlackBerry.cpp400 static PassRefPtr<LayerAnimation> removeAnimationByName(const String& animationName, Vector<RefPtr<LayerAnimation> >& list) argument
403 if (list[i]->name() == animationName) {
413 bool GraphicsLayerBlackBerry::addAnimation(const KeyframeValueList& values, const IntSize& boxSize, const Animation* animation, const String& animationName, double timeOffset) argument
429 RefPtr<LayerAnimation> layerAnimation = LayerAnimation::create(values, boxSize, animation, animationName, timeOffset);
432 fprintf(stderr, "LayerAnimation 0x%08x: Adding animation %s for property %d\n", (int)layerAnimation.get(), animationName.latin1().data(), values.property());
442 void GraphicsLayerBlackBerry::pauseAnimation(const String& animationName, double timeOffset) argument
446 while (RefPtr<LayerAnimation> animation = removeAnimationByName(animationName, m_runningAnimations)) {
468 void GraphicsLayerBlackBerry::removeAnimation(const String& animationName) argument
473 fprintf(stderr, "LayerAnimation: Removing animation %s\n", animationName.latin1().data());
476 while (removeAnimationByName(animationName, m_runningAnimation
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DKeyframeAnimation.h54 const AtomicString& name() const { return m_keyframes.animationName(); }
H A DKeyframeAnimation.cpp247 toRenderBoxModelObject(m_object)->animationPaused(timeOffset, m_keyframes.animationName());
263 toRenderBoxModelObject(m_object)->animationFinished(m_keyframes.animationName());
320 m_compAnim->animationController()->addEventToDispatch(element, eventType, m_keyframes.animationName(), elapsedTime);
H A DCompositeAnimation.cpp238 AtomicString animationName(anim->name());
244 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(animationName.impl());
259 } else if ((anim->duration() || anim->delay()) && anim->iterationCount() && animationName != none) {
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.cpp657 void GraphicsLayerTextureMapper::pauseAnimation(const String& animationName, double timeOffset) argument
659 m_animations.pause(animationName, timeOffset);
662 void GraphicsLayerTextureMapper::removeAnimation(const String& animationName) argument
664 m_animations.remove(animationName);
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebFramePrivate.idl87 HRESULT pauseAnimation([in] BSTR animationName, [in] IDOMNode* node, [in] double secondsFromNow, [out, retval] BOOL* animationWasRunning);
/macosx-10.9.5/WebCore-7537.78.1/testing/
H A DInternals.h102 bool pauseAnimationAtTimeOnElement(const String& animationName, double pauseTime, Element*, ExceptionCode&);
103 bool pauseAnimationAtTimeOnPseudoElement(const String& animationName, double pauseTime, Element*, const String& pseudoId, ExceptionCode&);
H A DInternals.idl62 [RaisesException] boolean pauseAnimationAtTimeOnElement(DOMString animationName, double pauseTime, Element element);
63 [RaisesException] boolean pauseAnimationAtTimeOnPseudoElement(DOMString animationName, double pauseTime, Element element, DOMString pseudoId);
H A DInternals.cpp442 bool Internals::pauseAnimationAtTimeOnElement(const String& animationName, double pauseTime, Element* element, ExceptionCode& ec) argument
449 return controller->pauseAnimationAtTime(element->renderer(), AtomicString(animationName), pauseTime);
452 bool Internals::pauseAnimationAtTimeOnPseudoElement(const String& animationName, double pauseTime, Element* element, const String& pseudoId, ExceptionCode& ec) argument
470 return frame()->animation()->pauseAnimationAtTime(pseudoElement->renderer(), AtomicString(animationName), pauseTime);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/coordinated/
H A DCoordinatedGraphicsLayer.cpp1225 void CoordinatedGraphicsLayer::pauseAnimation(const String& animationName, double time) argument
1227 m_animations.pause(animationName, time);
1231 void CoordinatedGraphicsLayer::removeAnimation(const String& animationName) argument
1233 m_animations.remove(animationName);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderLayerBacking.cpp2124 if (hasTransform && m_graphicsLayer->addAnimation(transformVector, toRenderBox(renderer())->pixelSnappedBorderBoxRect().size(), anim, keyframes.animationName(), timeOffset))
2127 if (hasOpacity && m_graphicsLayer->addAnimation(opacityVector, IntSize(), anim, keyframes.animationName(), timeOffset))
2131 if (hasFilter && m_graphicsLayer->addAnimation(filterVector, IntSize(), anim, keyframes.animationName(), timeOffset))
2138 void RenderLayerBacking::animationPaused(double timeOffset, const String& animationName) argument
2140 m_graphicsLayer->pauseAnimation(animationName, timeOffset);
2143 void RenderLayerBacking::animationFinished(const String& animationName) argument
2145 m_graphicsLayer->removeAnimation(animationName);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebFrame.h253 virtual HRESULT STDMETHODCALLTYPE pauseAnimation(BSTR animationName, IDOMNode*, double secondsFromNow, BOOL* animationWasRunning);
H A DWebFrame.cpp1205 HRESULT WebFrame::pauseAnimation(BSTR animationName, IDOMNode* node, double secondsFromNow, BOOL* animationWasRunning) argument
1224 *animationWasRunning = controller->pauseAnimationAtTime(domNode->node()->renderer(), String(animationName, SysStringLen(animationName)), secondsFromNow);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleResolver.cpp1053 if (!e || list.animationName().isEmpty())
1058 KeyframesRuleMap::iterator it = m_keyframesRuleMap.find(list.animationName().impl());

Completed in 130 milliseconds