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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/animation/
WebAnimationProvider.h 65 WebAnimations startTransition(double timeOffset, CSSPropertyID, const RenderStyle* fromStyle, const RenderStyle* toStyle, bool hasTransform, bool hasFilter, const IntSize& boxSize, float fromOpacity, float toOpacity);
WebAnimationProvider.cpp 165 WebAnimations WebAnimationProvider::startTransition(double timeOffset, CSSPropertyID property, const RenderStyle* fromStyle, const RenderStyle* toStyle, bool hasTransform, bool hasFilter, const IntSize& boxSize, float fromOpacity, float toOpacity)
172 const CSSAnimationData* opacityAnim = toStyle->transitionForProperty(CSSPropertyOpacity);
181 const CSSAnimationData* transformAnim = toStyle->transitionForProperty(CSSPropertyWebkitTransform);
185 transformVector.insert(adoptPtr(new TransformAnimationValue(1, &toStyle->transform())));
190 const CSSAnimationData* filterAnim = toStyle->transitionForProperty(CSSPropertyWebkitFilter);
194 filterVector.insert(adoptPtr(new FilterAnimationValue(1, &toStyle->filter())));
  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
KeyframeAnimation.cpp 73 void KeyframeAnimation::fetchIntervalEndpointsForProperty(CSSPropertyID property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
143 toStyle = nextKeyframe.style();
195 const RenderStyle* toStyle = 0;
197 fetchIntervalEndpointsForProperty(*it, fromStyle, toStyle, progress);
199 bool needsAnim = CSSPropertyAnimation::blendProperties(this, *it, animatedStyle.get(), fromStyle, toStyle, progress);
225 const RenderStyle* toStyle = 0;
227 fetchIntervalEndpointsForProperty(*it, fromStyle, toStyle, progress);
229 CSSPropertyAnimation::blendProperties(this, *it, animatedStyle.get(), fromStyle, toStyle, progress);
KeyframeAnimation.h 87 void fetchIntervalEndpointsForProperty(CSSPropertyID, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& progress) const;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CompositedLayerMapping.h 145 bool startTransition(double, CSSPropertyID, const RenderStyle* fromStyle, const RenderStyle* toStyle);
CompositedLayerMapping.cpp     [all...]
RenderBoxModelObject.h 188 bool startTransition(double, CSSPropertyID, const RenderStyle* fromStyle, const RenderStyle* toStyle);
RenderBoxModelObject.cpp 103 bool RenderBoxModelObject::startTransition(double timeOffset, CSSPropertyID propertyId, const RenderStyle* fromStyle, const RenderStyle* toStyle)
107 return layer()->compositedLayerMapping()->startTransition(timeOffset, propertyId, fromStyle, toStyle);
    [all...]

Completed in 93 milliseconds