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

  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 35 #include "core/animation/ActiveAnimations.h"
236 const ActiveAnimations* activeAnimations = animatingElement ? animatingElement->activeAnimations() : 0;
241 if (activeAnimations && activeAnimations->isAnimationStyleChange())
246 const CSSAnimations* cssAnimations = activeAnimations ? &activeAnimations->cssAnimations() : 0;
270 ASSERT(!activeAnimations || !activeAnimations->isAnimationStyleChange())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationStackTest.cpp 8 #include "core/animation/ActiveAnimations.h"
89 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, 0, Animation::DefaultPriority, 0);
103 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), &newAnimations, 0, Animation::DefaultPriority, 10);
115 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, &cancelledAnimationPlayers, Animation::DefaultPriority, 0);
130 interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, 0, Animation::DefaultPriority, 0);
137 interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, 0, Animation::DefaultPriority, 0);
143 interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, 0, Animation::DefaultPriority, 0);
149 interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, 0, Animation::DefaultPriority, 0);
ElementAnimation.h 34 #include "core/animation/ActiveAnimations.h"
99 const AnimationPlayerCountedSet& players = element.activeAnimations()->players();
Animation.cpp 36 #include "core/animation/ActiveAnimations.h"
107 m_target->activeAnimations()->notifyAnimationDestroyed(this);
123 m_target->activeAnimations()->players().remove(player());
AnimationPlayerTest.cpp 34 #include "core/animation/ActiveAnimations.h"
802 EXPECT_EQ(1U, element->activeAnimations()->players().find(player.get())->value);
806 EXPECT_TRUE(element->activeAnimations()->players().isEmpty());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.h 25 #include "core/animation/ActiveAnimations.h"
105 ActiveAnimations* activeAnimations() { return m_activeAnimations.get(); }
106 void setActiveAnimations(PassOwnPtrWillBeRawPtr<ActiveAnimations> activeAnimations)
108 m_activeAnimations = activeAnimations;
143 OwnPtrWillBeMember<ActiveAnimations> m_activeAnimations;
Element.cpp 338 ActiveAnimations* Element::activeAnimations() const
341 return elementRareData()->activeAnimations();
345 ActiveAnimations& Element::ensureActiveAnimations()
348 if (!rareData.activeAnimations())
349 rareData.setActiveAnimations(adoptPtrWillBeNoop(new ActiveAnimations()));
350 return *rareData.activeAnimations();
358 ActiveAnimations* activeAnimations = elementRareData()->activeAnimations();
    [all...]
Element.h 42 class ActiveAnimations;
472 ActiveAnimations* activeAnimations() const;
473 ActiveAnimations& ensureActiveAnimations();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.cpp 36 #include "core/animation/ActiveAnimations.h"
751 if (ActiveAnimations* activeAnimations = pseudo->activeAnimations())
752 activeAnimations->cssAnimations().maybeApplyPendingUpdate(pseudo.get());
    [all...]

Completed in 233 milliseconds