HomeSort by relevance Sort by last modified time
    Searched refs:m_animation (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
AnimationBase.cpp 54 , m_animation(const_cast<CSSAnimationData*>(transition))
58 if (m_animation->iterationCount() > 0)
59 m_totalDuration = m_animation->duration() * m_animation->iterationCount();
70 return m_animation->duration();
75 return m_animation->playState() == AnimPlayStatePlaying;
181 if (m_animation->delay() < 0)
182 timeOffset = -m_animation->delay();
201 if (m_animation->delay() < 0)
202 m_startTime += m_animation->delay()
    [all...]
AnimationBase.h 140 void setAnimation(const CSSAnimationData* anim) { m_animation = const_cast<CSSAnimationData*>(anim); }
179 const CSSAnimationData* animation() const { return m_animation.get(); }
222 RefPtr<CSSAnimationData> m_animation; member in class:WebCore::AnimationBase
KeyframeAnimation.cpp 77 if (m_animation->duration() && m_animation->iterationCount() != CSSAnimationData::IterationCountInfinite)
78 elapsedTime = min(elapsedTime, m_animation->duration() * m_animation->iterationCount());
159 if (isNew() && m_animation->playState() == AnimPlayStatePlaying)
175 if (waitingToStart() && m_animation->delay() > 0 && !m_animation->fillsBackwards())
212 if (waitingToStart() && m_animation->delay() > 0 && !m_animation->fillsBackwards())
241 m_isAccelerated = toRenderBoxModelObject(m_object)->startAnimation(timeOffset, m_animation.get(), m_keyframes)
    [all...]
CompositeAnimation.cpp 468 double count = keyframeAnim->m_animation->iterationCount();
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 119 m_animation = 0;
125 , m_animation(animation)
132 SVGSMILElement* m_animation; member in class:WebCore::ConditionEventListener
139 return m_animation == conditionEventListener->m_animation && m_condition == conditionEventListener->m_condition;
145 if (!m_animation)
147 m_animation->handleConditionEvent(event, m_condition);
    [all...]

Completed in 779 milliseconds