Home
last modified time | relevance | path

Searched refs:CSSAnimationUpdate (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSAnimations.h54 class CSSAnimationUpdate FINAL {
152 …static PassOwnPtr<CSSAnimationUpdate> calculateUpdate(Element*, const Element& parentElement, cons…
154 void setPendingUpdate(PassOwnPtr<CSSAnimationUpdate> update) { m_pendingUpdate = update; } in setPendingUpdate()
173 OwnPtr<CSSAnimationUpdate> m_pendingUpdate;
177 …static void calculateAnimationUpdate(CSSAnimationUpdate*, Element*, const Element& parentElement, …
178 static void calculateTransitionUpdate(CSSAnimationUpdate*, const Element*, const RenderStyle&);
179 …Style, const RenderStyle&, const TransitionMap* activeTransitions, CSSAnimationUpdate*, const Elem…
181 static void calculateAnimationCompositableValues(CSSAnimationUpdate*, const Element*);
182 static void calculateTransitionCompositableValues(CSSAnimationUpdate*, const Element*);
DCSSAnimations.cpp350 PassOwnPtr<CSSAnimationUpdate> CSSAnimations::calculateUpdate(Element* element, const Element& pare… in calculateUpdate()
353 OwnPtr<CSSAnimationUpdate> update = adoptPtr(new CSSAnimationUpdate()); in calculateUpdate()
361 void CSSAnimations::calculateAnimationUpdate(CSSAnimationUpdate* update, Element* element, const El… in calculateAnimationUpdate()
430 OwnPtr<CSSAnimationUpdate> update = m_pendingUpdate.release(); in maybeApplyPendingUpdate()
451 …for (Vector<CSSAnimationUpdate::NewAnimation>::const_iterator iter = update->newAnimations().begin… in maybeApplyPendingUpdate()
484 …for (CSSAnimationUpdate::NewTransitionMap::const_iterator iter = update->newTransitions().begin();… in maybeApplyPendingUpdate()
485 const CSSAnimationUpdate::NewTransition& newTransition = iter->value; in maybeApplyPendingUpdate()
526 … const RenderStyle& style, const TransitionMap* activeTransitions, CSSAnimationUpdate* update, con… in calculateTransitionUpdateForProperty()
582 void CSSAnimations::calculateTransitionUpdate(CSSAnimationUpdate* update, const Element* element, c… in calculateTransitionUpdate()
664 void CSSAnimations::calculateAnimationCompositableValues(CSSAnimationUpdate* update, const Element*… in calculateAnimationCompositableValues()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleResolverState.h69 void setAnimationUpdate(PassOwnPtr<CSSAnimationUpdate> update) { m_animationUpdate = update; } in setAnimationUpdate()
70 const CSSAnimationUpdate* animationUpdate() { return m_animationUpdate.get(); } in animationUpdate()
71 PassOwnPtr<CSSAnimationUpdate> takeAnimationUpdate() { return m_animationUpdate.release(); } in takeAnimationUpdate()
150 OwnPtr<CSSAnimationUpdate> m_animationUpdate;
DStyleResolver.h50 class CSSAnimationUpdate; variable