HomeSort by relevance Sort by last modified time
    Searched defs:AnimationEvent (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/cc/animation/
animation_events.cc 9 AnimationEvent::AnimationEvent(AnimationEvent::Type type,
animation_events.h 16 struct CC_EXPORT AnimationEvent {
19 AnimationEvent(Type type,
35 typedef std::vector<AnimationEvent> AnimationEventsVector;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
AnimationEvent.cpp 27 #include "core/dom/AnimationEvent.h"
39 AnimationEvent::AnimationEvent()
45 AnimationEvent::AnimationEvent(const AtomicString& type, const AnimationEventInit& initializer)
53 AnimationEvent::AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime)
61 AnimationEvent::~AnimationEvent()
65 const String& AnimationEvent::animationName() cons
    [all...]
AnimationEvent.h 40 class AnimationEvent : public Event {
42 static PassRefPtr<AnimationEvent> create()
44 return adoptRef(new AnimationEvent);
46 static PassRefPtr<AnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
48 return adoptRef(new AnimationEvent(type, animationName, elapsedTime));
50 static PassRefPtr<AnimationEvent> create(const AtomicString& type, const AnimationEventInit& initializer)
52 return adoptRef(new AnimationEvent(type, initializer));
55 virtual ~AnimationEvent();
63 AnimationEvent();
64 AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime)
    [all...]

Completed in 49 milliseconds