Home
last modified time | relevance | path

Searched refs:activeAnimations (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSAnimations.cpp237 const ActiveAnimations* activeAnimations = element ? element->activeAnimations() : 0; in calculateAnimationUpdate() local
242 if (activeAnimations && activeAnimations->isAnimationStyleChange()) in calculateAnimationUpdate()
247 const CSSAnimations* cssAnimations = activeAnimations ? &activeAnimations->cssAnimations() : 0; in calculateAnimationUpdate()
271 ASSERT(!activeAnimations || !activeAnimations->isAnimationStyleChange()); in calculateAnimationUpdate()
284 ASSERT(!activeAnimations || !activeAnimations->isAnimationStyleChange()); in calculateAnimationUpdate()
292 ASSERT(!activeAnimations || !activeAnimations->isAnimationStyleChange()); in calculateAnimationUpdate()
416 … ASSERT(!element->activeAnimations() || !element->activeAnimations()->isAnimationStyleChange()); in calculateTransitionUpdateForProperty()
451 ASSERT(!element->activeAnimations() || !element->activeAnimations()->isAnimationStyleChange()); in calculateTransitionUpdateForProperty()
459 ActiveAnimations* activeAnimations = element->activeAnimations(); in calculateTransitionUpdate() local
460 …const TransitionMap* activeTransitions = activeAnimations ? &activeAnimations->cssAnimations().m_t… in calculateTransitionUpdate()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimationStackTest.cpp89 …polation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultSta… in TEST_F()
103 …polation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultSta… in TEST_F()
115 …polation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultSta… in TEST_F()
130 …interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack()… in TEST_F()
140 …interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack()… in TEST_F()
149 …interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack()… in TEST_F()
157 …interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack()… in TEST_F()
DAnimation.cpp108 m_target->activeAnimations()->notifyAnimationDestroyed(this); in ~Animation()
124 m_target->activeAnimations()->removePlayer(player()); in detach()
DAnimationPlayerTest.cpp703 EXPECT_EQ(1, element->activeAnimations()->players().find(player.get())->value); in TEST_F()
707 EXPECT_TRUE(element->activeAnimations()->players().isEmpty()); in TEST_F()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElementRareData.h107 ActiveAnimations* activeAnimations() { return m_activeAnimations.get(); } in activeAnimations() function
108 void setActiveAnimations(PassOwnPtrWillBeRawPtr<ActiveAnimations> activeAnimations) in setActiveAnimations() argument
110 m_activeAnimations = activeAnimations; in setActiveAnimations()
DElement.cpp330 ActiveAnimations* Element::activeAnimations() const in activeAnimations() function in WebCore::Element
333 return elementRareData()->activeAnimations(); in activeAnimations()
340 if (!rareData.activeAnimations()) in ensureActiveAnimations()
342 return *rareData.activeAnimations(); in ensureActiveAnimations()
350 ActiveAnimations* activeAnimations = elementRareData()->activeAnimations(); in hasActiveAnimations() local
351 return activeAnimations && !activeAnimations->isEmpty(); in hasActiveAnimations()
1383 if (ActiveAnimations* activeAnimations = elementRareData()->activeAnimations()) { in attach() local
1384 activeAnimations->cssAnimations().cancel(); in attach()
1385 activeAnimations->setAnimationStyleChange(false); in attach()
1407 if (ActiveAnimations* activeAnimations = data->activeAnimations()) { in detach() local
[all …]
DElement.h499 ActiveAnimations* activeAnimations() const;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleResolver.cpp804 if (ActiveAnimations* activeAnimations = pseudo->activeAnimations()) in createPseudoElementIfNeeded() local
805 activeAnimations->cssAnimations().maybeApplyPendingUpdate(pseudo.get()); in createPseudoElementIfNeeded()