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

  /external/webkit/Source/WebCore/page/animation/
ImplicitAnimation.h 37 // An ImplicitAnimation tracks the state of a transition of a specific CSS property
39 class ImplicitAnimation : public AnimationBase {
41 static PassRefPtr<ImplicitAnimation> create(const Animation* animation, int animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
43 return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
81 ImplicitAnimation(const Animation*, int animatingProperty, RenderObject*, CompositeAnimation*, RenderStyle* fromStyle);
82 virtual ~ImplicitAnimation();
85 int m_animatingProperty; // Specific property for this ImplicitAnimation
ImplicitAnimation.cpp 35 #include "ImplicitAnimation.h"
43 ImplicitAnimation::ImplicitAnimation(const Animation* transition, int animatingProperty, RenderObject* renderer, CompositeAnimation* compAnim, RenderStyle* fromStyle)
54 ImplicitAnimation::~ImplicitAnimation()
61 bool ImplicitAnimation::shouldSendEventForListener(Document::ListenerType inListenerType) const
66 void ImplicitAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
101 void ImplicitAnimation::getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle)
109 bool ImplicitAnimation::startAnimation(double timeOffset)
123 void ImplicitAnimation::pauseAnimation(double timeOffset
    [all...]
CompositeAnimation.cpp 35 #include "ImplicitAnimation.h"
61 ImplicitAnimation* transition = it->second.get();
125 ImplicitAnimation* implAnim = m_transitions.get(prop).get();
169 m_transitions.set(prop, ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() : fromStyle));
183 ImplicitAnimation* anim = it->second.get();
292 if (ImplicitAnimation* anim = it->second.get())
314 if (ImplicitAnimation* implicitAnimation = it->second.get())
315 implicitAnimation->getAnimatedStyle(resultStyle);
335 ImplicitAnimation* transition = it->second.get()
    [all...]
CompositeAnimation.h 32 #include "ImplicitAnimation.h"
97 typedef HashMap<int, RefPtr<ImplicitAnimation> > CSSPropertyTransitionsMap;
  /external/webkit/Source/WebCore/
Android.mk 536 page/animation/ImplicitAnimation.cpp \
    [all...]

Completed in 56 milliseconds