OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fromStyle
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
ImplicitAnimation.h
42
static PassRefPtr<ImplicitAnimation> create(const CSSAnimationData* animation, CSSPropertyID animatingProperty, RenderObject& renderer, CompositeAnimation* compositeAnimation, RenderStyle*
fromStyle
)
44
return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation,
fromStyle
));
KeyframeAnimation.cpp
73
void KeyframeAnimation::fetchIntervalEndpointsForProperty(CSSPropertyID property, const RenderStyle*&
fromStyle
, const RenderStyle*& toStyle, double& prog) const
142
fromStyle
= prevKeyframe.style();
174
// through to the style blend so that we get the
fromStyle
.
194
const RenderStyle*
fromStyle
= 0;
197
fetchIntervalEndpointsForProperty(*it,
fromStyle
, toStyle, progress);
199
bool needsAnim = CSSPropertyAnimation::blendProperties(this, *it, animatedStyle.get(),
fromStyle
, toStyle, progress);
224
const RenderStyle*
fromStyle
= 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;
ImplicitAnimation.cpp
43
ImplicitAnimation::ImplicitAnimation(const CSSAnimationData* transition, CSSPropertyID animatingProperty, RenderObject& renderer, CompositeAnimation* compAnim, RenderStyle*
fromStyle
)
49
, m_fromStyle(
fromStyle
)
CompositeAnimation.cpp
117
RenderStyle*
fromStyle
= keyframeAnim ? keyframeAnim->unanimatedStyle() : currentStyle;
153
equal = !isActiveTransition || CSSPropertyAnimation::propertiesEqual(prop,
fromStyle
, &targetStyle);
162
m_transitions.set(prop, ImplicitAnimation::create(const_cast<CSSAnimationData*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() :
fromStyle
));
/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)
184
transformVector.insert(adoptPtr(new TransformAnimationValue(0, &
fromStyle
->transform())));
193
filterVector.insert(adoptPtr(new FilterAnimationValue(0, &
fromStyle
->filter())));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
CompositedLayerMapping.h
145
bool startTransition(double, CSSPropertyID, const RenderStyle*
fromStyle
, const RenderStyle* toStyle);
RenderBoxModelObject.h
188
bool startTransition(double, CSSPropertyID, const RenderStyle*
fromStyle
, const RenderStyle* toStyle);
CompositedLayerMapping.cpp
[
all
...]
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 152 milliseconds