/external/webkit/Source/WebCore/dom/ |
D | WebKitAnimationEvent.cpp | 38 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
|
D | WebKitAnimationEvent.h | 39 …<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);
|
D | WebKitTransitionEvent.h | 39 …WebKitTransitionEvent> create(const AtomicString& type, const String& animationName, double elapse… in create() argument 41 return adoptRef(new WebKitTransitionEvent(type, animationName, elapsedTime)); in create()
|
D | WebKitAnimationEvent.idl | 29 readonly attribute DOMString animationName;
|
/external/webkit/Source/WebCore/platform/graphics/ca/ |
D | GraphicsLayerCA.h | 105 …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 …]
|
D | GraphicsLayerCA.cpp | 228 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/ |
D | KeyframeList.h | 64 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/ |
D | WebAnimationControllerImpl.cpp | 59 const WebString& animationName, in pauseAnimationAtTime() argument 66 animationName, in pauseAnimationAtTime()
|
D | WebAnimationControllerImpl.h | 49 const WebString& animationName,
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebAnimationController.h | 47 const WebString& animationName,
|
/external/webkit/Source/WebCore/page/animation/ |
D | KeyframeAnimation.cpp | 271 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()
|
D | KeyframeAnimation.h | 52 const AtomicString& name() const { return m_keyframes.animationName(); } in name()
|
D | CompositeAnimation.cpp | 227 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/ |
D | RenderLayerBacking.cpp | 1309 …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/ |
D | WebFrame.h | 109 …bool pauseAnimationOnElementWithId(const String& animationName, const String& elementID, double ti…
|
D | WebFrame.cpp | 388 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/ |
D | LayoutTestController.h | 98 …bool pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef eleme…
|
D | LayoutTestController.cpp | 164 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/ |
D | DumpRenderTreeSupportQt.cpp | 255 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/ |
D | LayoutTestControllerWx.cpp | 361 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double ti… in pauseAnimationAtTimeOnElementWithId() argument
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
D | LayoutTestController.idl | 76 …boolean pauseAnimationAtTimeOnElementWithId(in DOMString animationName, in double time, in DOMStri…
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | LayoutTestControllerQt.h | 176 …bool pauseAnimationAtTimeOnElementWithId(const QString& animationName, double time, const QString&…
|
D | LayoutTestControllerQt.cpp | 495 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/ |
D | IWebFramePrivate.idl | 88 …HRESULT pauseAnimation([in] BSTR animationName, [in] IDOMNode* node, [in] double secondsFromNow, […
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | LayoutTestController.h | 475 …bool pauseAnimationAtTimeOnElementWithId(const WebKit::WebString& animationName, double time, cons…
|