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

  /external/webkit/WebCore/page/animation/
ImplicitAnimation.h 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);
KeyframeAnimation.cpp 65 void KeyframeAnimation::getKeyframeAnimationInterval(const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
82 if (!fromStyle)
90 fromStyle = it->style();
93 if (!fromStyle || !toStyle)
97 if (fromStyle->animations() && fromStyle->animations()->size() > 0) {
99 timingFunction = &(fromStyle->animations()->animation(0)->timingFunction());
132 const RenderStyle* fromStyle = 0;
135 getKeyframeAnimationInterval(fromStyle, toStyle, progress);
138 if (!fromStyle || !toStyle)
    [all...]
KeyframeAnimation.h 86 void getKeyframeAnimationInterval(const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& progress) const;
ImplicitAnimation.cpp 43 ImplicitAnimation::ImplicitAnimation(const Animation* transition, int animatingProperty, RenderObject* renderer, CompositeAnimation* compAnim, RenderStyle* fromStyle)
49 , m_fromStyle(fromStyle)
CompositeAnimation.cpp 114 RenderStyle* fromStyle = keyframeAnim ? keyframeAnim->unanimatedStyle() : currentStyle;
151 equal = !isActiveTransition || AnimationBase::propertiesEqual(prop, fromStyle, targetStyle);
160 m_transitions.set(prop, ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() : fromStyle));
  /external/webkit/WebCore/rendering/
RenderLayerBacking.h 101 bool startTransition(double timeOffset, int property, const RenderStyle* fromStyle, const RenderStyle* toStyle);
RenderLayerBacking.cpp     [all...]

Completed in 432 milliseconds