HomeSort by relevance Sort by last modified time
    Searched refs:animationName (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/WebCore/dom/
WebKitAnimationEvent.cpp 38 WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime)
40 , m_animationName(animationName)
52 const String& animationName,
60 m_animationName = animationName;
64 const String& WebKitAnimationEvent::animationName() const
WebKitAnimationEvent.h 39 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
41 return adoptRef(new WebKitAnimationEvent(type, animationName, elapsedTime));
49 const String& animationName,
52 const String& animationName() const;
59 WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
WebKitAnimationEvent.idl 29 readonly attribute DOMString animationName;
WebKitTransitionEvent.h 39 static PassRefPtr<WebKitTransitionEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
41 return adoptRef(new WebKitTransitionEvent(type, animationName, elapsedTime));
  /external/webkit/WebKit/chromium/public/
WebAnimationController.h 47 const WebString& animationName,
  /external/webkit/WebKit/chromium/src/
WebAnimationControllerImpl.h 51 const WebString& animationName,
WebAnimationControllerImpl.cpp 59 const WebString& animationName,
66 animationName,
  /external/webkit/WebCore/rendering/style/
KeyframeList.h 54 KeyframeList(RenderObject* renderer, const AtomicString& animationName)
55 : m_animationName(animationName)
66 const AtomicString& animationName() const { return m_animationName; }
  /external/webkit/WebCore/page/animation/
KeyframeAnimation.h 52 const AtomicString& name() const { return m_keyframes.animationName(); }
KeyframeAnimation.cpp 218 layer->backing()->animationPaused(timeOffset, m_keyframes.animationName());
237 layer->backing()->animationFinished(m_keyframes.animationName());
289 m_compAnim->animationController()->addEventToDispatch(element, eventType, m_keyframes.animationName(), elapsedTime);
CompositeAnimation.cpp 214 AtomicString animationName(anim->name());
220 RefPtr<KeyframeAnimation> keyframeAnim = m_keyframeAnimations.get(animationName.impl());
  /external/webkit/WebKitTools/DumpRenderTree/qt/
LayoutTestControllerQt.h 132 bool pauseAnimationAtTimeOnElementWithId(const QString& animationName, double time, const QString& elementId);
LayoutTestControllerQt.cpp 356 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(const QString& animationName,
362 return qt_drt_pauseAnimation(frame, animationName, time, elementId);
  /external/webkit/WebKitTools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 274 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId)
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.mm 743 void GraphicsLayerCA::removeAnimationsForKeyframes(const String& animationName)
745 if (!animationIsRunning(animationName))
748 m_keyframeAnimationsToProcess.add(animationName, AnimationProcessingAction(Remove));
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebFramePrivate.idl 90 HRESULT pauseAnimation([in] BSTR animationName, [in] IDOMNode* node, [in] double secondsFromNow, [out, retval] BOOL* animationWasRunning);
  /external/webkit/WebCore/rendering/
RenderLayerBacking.cpp     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp 459 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId)
461 gchar* name = JSStringCopyUTF8CString(animationName);
  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.h 214 bool pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId);
LayoutTestController.cpp     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 497 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId)
501 RetainPtr<CFStringRef> nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, animationName));
  /external/webkit/WebKit/win/
WebFrame.h 241 virtual HRESULT STDMETHODCALLTYPE pauseAnimation(BSTR animationName, IDOMNode*, double secondsFromNow, BOOL* animationWasRunning);
WebFrame.cpp 1121 HRESULT WebFrame::pauseAnimation(BSTR animationName, IDOMNode* node, double secondsFromNow, BOOL* animationWasRunning)
1140 *animationWasRunning = controller->pauseAnimationAtTime(domNode->node()->renderer(), String(animationName, SysStringLen(animationName)), secondsFromNow);
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 842 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId)
859 BSTR nameBSTR = JSStringCopyBSTR(animationName);
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebframe.cpp 112 bool QWEBKIT_EXPORT qt_drt_pauseAnimation(QWebFrame *qframe, const QString &animationName, double time, const QString &elementId)
129 return controller->pauseAnimationAtTime(coreNode->renderer(), animationName, time);
    [all...]

Completed in 393 milliseconds

1 2