Searched refs:SMILTimeContainer (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/svg/animation/
H A DSMILTimeContainer.h45 class SMILTimeContainer : public RefCounted<SMILTimeContainer> { class in namespace:WebCore
47 static PassRefPtr<SMILTimeContainer> create(SVGSVGElement* owner) { return adoptRef(new SMILTimeContainer(owner)); }
48 ~SMILTimeContainer();
68 SMILTimeContainer(SVGSVGElement* owner);
70 void timerFired(Timer<SMILTimeContainer>*);
85 Timer<SMILTimeContainer> m_timer;
H A DSMILTimeContainer.cpp27 #include "SMILTimeContainer.h"
40 SMILTimeContainer::SMILTimeContainer(SVGSVGElement* owner) function in class:WebCore::SMILTimeContainer
47 , m_timer(this, &SMILTimeContainer::timerFired)
55 SMILTimeContainer::~SMILTimeContainer()
62 void SMILTimeContainer::schedule(SVGSMILElement* animation, SVGElement* target, const QualifiedName& attributeName)
84 void SMILTimeContainer::unschedule(SVGSMILElement* animation, SVGElement* target, const QualifiedName& attributeName)
100 void SMILTimeContainer::notifyIntervalsChanged()
107 SMILTime SMILTimeContainer
[all...]
H A DSVGSMILElement.h37 class SMILTimeContainer;
55 SMILTimeContainer* timeContainer() { return m_timeContainer.get(); }
228 RefPtr<SMILTimeContainer> m_timeContainer;
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGSVGElement.h40 class SMILTimeContainer;
86 SMILTimeContainer* timeContainer() { return m_timeContainer.get(); }
175 RefPtr<SMILTimeContainer> m_timeContainer;
H A DSVGSVGElement.cpp46 #include "SMILTimeContainer.h"
90 , m_timeContainer(SMILTimeContainer::create(this))

Completed in 190 milliseconds