Home
last modified time | relevance | path

Searched refs:m_timeContainer (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/svg/animation/
DSVGSMILElement.cpp142 if (m_timeContainer) in ~SVGSMILElement()
143 m_timeContainer->unschedule(this); in ~SVGSMILElement()
182 m_timeContainer = owner->timeContainer(); in insertedIntoDocument()
183 ASSERT(m_timeContainer); in insertedIntoDocument()
184 m_timeContainer->setDocumentOrderIndexesDirty(); in insertedIntoDocument()
191 if (m_timeContainer) { in removedFromDocument()
192 m_timeContainer->unschedule(this); in removedFromDocument()
193 m_timeContainer = 0; in removedFromDocument()
494 if (m_timeContainer) in reschedule()
495 m_timeContainer->schedule(this); in reschedule()
[all …]
DSVGSMILElement.h55 SMILTimeContainer* timeContainer() const { return m_timeContainer.get(); } in timeContainer()
214 RefPtr<SMILTimeContainer> m_timeContainer; variable
/external/webkit/Source/WebCore/svg/
DSVGSVGElement.cpp72 , m_timeContainer(SMILTimeContainer::create(this)) in DEFINE_ANIMATED_LENGTH()
539 if (!m_timeContainer->isPaused()) in pauseAnimations()
540 m_timeContainer->pause(); in pauseAnimations()
545 if (m_timeContainer->isPaused()) in unpauseAnimations()
546 m_timeContainer->resume(); in unpauseAnimations()
551 return m_timeContainer->isPaused(); in animationsPaused()
556 return narrowPrecisionToFloat(m_timeContainer->elapsed().value()); in getCurrentTime()
DSVGSVGElement.h90 SMILTimeContainer* timeContainer() const { return m_timeContainer.get(); } in timeContainer()
171 RefPtr<SMILTimeContainer> m_timeContainer; variable