Home
last modified time | relevance | path

Searched refs:animationName (Results 1 – 25 of 36) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
DWebKitAnimationEvent.cpp38 WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const String& animationName, d… in WebKitAnimationEvent() argument
40 , m_animationName(animationName) in WebKitAnimationEvent()
52 const String& animationName, in initWebKitAnimationEvent() argument
60 m_animationName = animationName; in initWebKitAnimationEvent()
64 const String& WebKitAnimationEvent::animationName() const in animationName() function in WebCore::WebKitAnimationEvent
DWebKitAnimationEvent.h39 …<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapse… in create() argument
41 return adoptRef(new WebKitAnimationEvent(type, animationName, elapsedTime)); in create()
49 const String& animationName,
52 const String& animationName() const;
59 … WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
DWebKitTransitionEvent.h39 …WebKitTransitionEvent> create(const AtomicString& type, const String& animationName, double elapse… in create() argument
41 return adoptRef(new WebKitTransitionEvent(type, animationName, elapsedTime)); in create()
DWebKitAnimationEvent.idl29 readonly attribute DOMString animationName;
/external/webkit/Source/WebCore/platform/graphics/ca/
DGraphicsLayerCA.h105 …meValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOf…
106 virtual void pauseAnimation(const String& animationName, double timeOffset);
107 virtual void removeAnimation(const String& animationName);
161 …omKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOf…
162 …omKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOf…
177 bool animationIsRunning(const String& animationName) const in animationIsRunning() argument
179 return m_runningAnimations.find(animationName) != m_runningAnimations.end(); in animationIsRunning()
297 …void setAnimationOnLayer(PlatformCAAnimation*, AnimatedPropertyID, const String& animationName, in…
298 bool removeCAAnimationFromLayer(AnimatedPropertyID, const String& animationName, int index);
299 …void pauseCAAnimationOnLayer(AnimatedPropertyID, const String& animationName, int index, double ti…
[all …]
DGraphicsLayerCA.cpp228 static String animationIdentifier(const String& animationName, AnimatedPropertyID property, int ind… in animationIdentifier() argument
230 return makeString(animationName, '_', String::number(property), '_', String::number(index)); in animationIdentifier()
605 …lueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOf… in addAnimation() argument
607 ASSERT(!animationName.isEmpty()); in addAnimation()
626 …createdAnimations = createTransformAnimationsFromKeyframes(valueList, anim, animationName, timeOff… in addAnimation()
628 … createdAnimations = createAnimationFromKeyframes(valueList, anim, animationName, timeOffset); in addAnimation()
636 void GraphicsLayerCA::pauseAnimation(const String& animationName, double timeOffset) in pauseAnimation() argument
638 if (!animationIsRunning(animationName)) in pauseAnimation()
641 AnimationsToProcessMap::iterator it = m_animationsToProcess.find(animationName); in pauseAnimation()
648 m_animationsToProcess.add(animationName, AnimationProcessingAction(Pause, timeOffset)); in pauseAnimation()
[all …]
/external/webkit/Source/WebCore/rendering/style/
DKeyframeList.h64 KeyframeList(RenderObject* renderer, const AtomicString& animationName) in KeyframeList() argument
65 : m_animationName(animationName) in KeyframeList()
76 const AtomicString& animationName() const { return m_animationName; } in animationName() function
/external/webkit/Source/WebKit/chromium/src/
DWebAnimationControllerImpl.cpp59 const WebString& animationName, in pauseAnimationAtTime() argument
66 animationName, in pauseAnimationAtTime()
DWebAnimationControllerImpl.h49 const WebString& animationName,
/external/webkit/Source/WebKit/chromium/public/
DWebAnimationController.h47 const WebString& animationName,
/external/webkit/Source/WebCore/page/animation/
DKeyframeAnimation.cpp271 layer->backing()->animationPaused(timeOffset, m_keyframes.animationName()); in pauseAnimation()
290 layer->backing()->animationFinished(m_keyframes.animationName()); in endAnimation()
348 …ationController()->addEventToDispatch(element, eventType, m_keyframes.animationName(), elapsedTime… in sendAnimationEvent()
DKeyframeAnimation.h52 const AtomicString& name() const { return m_keyframes.animationName(); } in name()
DCompositeAnimation.cpp227 AtomicString animationName(anim->name()); in updateKeyframeAnimations() local
233 … RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(animationName.impl()); in updateKeyframeAnimations()
248 … else if ((anim->duration() || anim->delay()) && anim->iterationCount() && animationName != none) { in updateKeyframeAnimations()
/external/webkit/Source/WebCore/rendering/
DRenderLayerBacking.cpp1309 …tor, toRenderBox(renderer())->borderBoxRect().size(), anim, keyframes.animationName(), timeOffset)… in startAnimation()
1314 …graphicsLayer->addAnimation(opacityVector, IntSize(), anim, keyframes.animationName(), timeOffset)… in startAnimation()
1322 void RenderLayerBacking::animationPaused(double timeOffset, const String& animationName) in animationPaused() argument
1324 m_graphicsLayer->pauseAnimation(animationName, timeOffset); in animationPaused()
1327 void RenderLayerBacking::animationFinished(const String& animationName) in animationFinished() argument
1329 m_graphicsLayer->removeAnimation(animationName); in animationFinished()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebFrame.h109 …bool pauseAnimationOnElementWithId(const String& animationName, const String& elementID, double ti…
DWebFrame.cpp388 bool WebFrame::pauseAnimationOnElementWithId(const String& animationName, const String& elementID, … in pauseAnimationOnElementWithId() argument
404 return controller->pauseAnimationAtTime(coreNode->renderer(), animationName, time); in pauseAnimationOnElementWithId()
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
DLayoutTestController.h98 …bool pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef eleme…
DLayoutTestController.cpp164 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double ti… in pauseAnimationAtTimeOnElementWithId() argument
169 …return WKBundleFramePauseAnimationOnElementWithId(mainFrame, toWK(animationName).get(), toWK(eleme… in pauseAnimationAtTimeOnElementWithId()
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DDumpRenderTreeSupportQt.cpp255 bool DumpRenderTreeSupportQt::pauseAnimation(QWebFrame *frame, const QString &animationName, double… in pauseAnimation() argument
272 return controller->pauseAnimationAtTime(coreNode->renderer(), animationName, time); in pauseAnimation()
1122 bool QWEBKIT_EXPORT qt_drt_pauseAnimation(QWebFrame* frame, const QString& animationName, double ti… in qt_drt_pauseAnimation() argument
1124 return DumpRenderTreeSupportQt::pauseAnimation(frame, animationName, time, elementId); in qt_drt_pauseAnimation()
/external/webkit/Tools/DumpRenderTree/wx/
DLayoutTestControllerWx.cpp361 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double ti… in pauseAnimationAtTimeOnElementWithId() argument
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
DLayoutTestController.idl76 …boolean pauseAnimationAtTimeOnElementWithId(in DOMString animationName, in double time, in DOMStri…
/external/webkit/Tools/DumpRenderTree/qt/
DLayoutTestControllerQt.h176 …bool pauseAnimationAtTimeOnElementWithId(const QString& animationName, double time, const QString&…
DLayoutTestControllerQt.cpp495 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(const QString& animationName, in pauseAnimationAtTimeOnElementWithId() argument
501 return DumpRenderTreeSupportQt::pauseAnimation(frame, animationName, time, elementId); in pauseAnimationAtTimeOnElementWithId()
/external/webkit/Source/WebKit/win/Interfaces/
DIWebFramePrivate.idl88 …HRESULT pauseAnimation([in] BSTR animationName, [in] IDOMNode* node, [in] double secondsFromNow, […
/external/webkit/Tools/DumpRenderTree/chromium/
DLayoutTestController.h475 …bool pauseAnimationAtTimeOnElementWithId(const WebKit::WebString& animationName, double time, cons…

12