Searched defs:fromStyle (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/page/animation/
H A DImplicitAnimation.h41 static PassRefPtr<ImplicitAnimation> create(const Animation* animation, int animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle) argument
43 return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
81 ImplicitAnimation(const Animation*, int animatingProperty, RenderObject*, CompositeAnimation*, RenderStyle* fromStyle);
H A DCompositeAnimation.cpp122 RenderStyle* fromStyle = keyframeAnim ? keyframeAnim->unanimatedStyle() : currentStyle; local
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));
H A DImplicitAnimation.cpp43 ImplicitAnimation::ImplicitAnimation(const Animation* transition, int animatingProperty, RenderObject* renderer, CompositeAnimation* compAnim, RenderStyle* fromStyle) argument
49 , m_fromStyle(fromStyle)
H A DKeyframeAnimation.cpp68 void KeyframeAnimation::fetchIntervalEndpointsForProperty(int property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const argument
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; local
193 fetchIntervalEndpointsForProperty(property, fromStyle, toStyle, progress);
195 bool needsAnim = blendProperties(this, property, animatedStyle.get(), fromStyle, toStyle, progress);
227 const RenderStyle* fromStyle local
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderLayerBacking.cpp1344 bool RenderLayerBacking::startTransition(double timeOffset, int property, const RenderStyle* fromStyle, const RenderStyle* toStyle) argument
1354 opacityVector.insert(new FloatAnimationValue(0, compositingOpacity(fromStyle->opacity())));
1369 transformVector.insert(new TransformAnimationValue(0, &fromStyle->transform()));

Completed in 94 milliseconds