Searched refs:compositeAnimation (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/page/animation/
H A DImplicitAnimation.h44 static PassRefPtr<ImplicitAnimation> create(const Animation& animation, CSSPropertyID animatingProperty, RenderElement* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle) argument
46 return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
H A DKeyframeAnimation.h43 static RefPtr<KeyframeAnimation> create(const Animation& animation, RenderElement* renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle* unanimatedStyle) argument
45 return adoptRef(new KeyframeAnimation(animation, renderer, index, compositeAnimation, unanimatedStyle));
H A DKeyframeAnimation.cpp43 KeyframeAnimation::KeyframeAnimation(const Animation& animation, RenderElement* renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle* unanimatedStyle) argument
44 : AnimationBase(animation, renderer, compositeAnimation)
123 void KeyframeAnimation::animate(CompositeAnimation* compositeAnimation, RenderElement*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle) argument
129 if (isNew() && m_animation->playState() == AnimPlayStatePlaying && !compositeAnimation->isSuspended())
307 compositeAnimation()->overrideImplicitAnimations(*it);
315 compositeAnimation()->resumeOverriddenImplicitAnimations(*it);
H A DAnimationController.cpp123 const CompositeAnimation* compositeAnimation = m_compositeAnimations.get(renderer); local
124 if (!compositeAnimation->isSuspended() && compositeAnimation->hasAnimations())
125 timeToNextService = compositeAnimation->timeToNextService();
319 CompositeAnimation& compositeAnimation = ensureCompositeAnimation(renderer);
320 if (compositeAnimation.pauseAnimationAtTime(name, t)) {
334 CompositeAnimation& compositeAnimation = ensureCompositeAnimation(renderer);
335 if (compositeAnimation.pauseTransitionAtTime(cssPropertyID(property), t)) {
H A DAnimationBase.h217 CompositeAnimation* compositeAnimation() { return m_compositeAnimation; } function in class:WebCore::AnimationBase
H A DAnimationBase.cpp71 AnimationBase::AnimationBase(const Animation& transition, RenderElement* renderer, CompositeAnimation* compositeAnimation) argument
85 , m_compositeAnimation(compositeAnimation)

Completed in 122 milliseconds