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

  /external/webkit/Source/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 68 void KeyframeAnimation::fetchIntervalEndpointsForProperty(int property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
132 fromStyle = prevKeyframe.style();
139 if (fromStyle->animations() && fromStyle->animations()->size() > 0) {
141 timingFunction = fromStyle->animations()->animation(0)->timingFunction().get();
168 // through to the style blend so that we get the fromStyle.
190 const RenderStyle* fromStyle = 0;
193 fetchIntervalEndpointsForProperty(property, fromStyle, toStyle, progress);
195 bool needsAnim = blendProperties(this, property, animatedStyle.get(), fromStyle, toStyle, progress);
227 const RenderStyle* fromStyle = 0
    [all...]
KeyframeAnimation.h 86 void fetchIntervalEndpointsForProperty(int property, 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 122 RenderStyle* fromStyle = keyframeAnim ? keyframeAnim->unanimatedStyle() : currentStyle;
160 equal = !isActiveTransition || AnimationBase::propertiesEqual(prop, fromStyle, targetStyle);
169 m_transitions.set(prop, ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() : fromStyle));
  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.h 111 bool startTransition(double timeOffset, int property, const RenderStyle* fromStyle, const RenderStyle* toStyle);
RenderLayerBacking.cpp     [all...]

Completed in 317 milliseconds