Searched refs:newAnimations (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationStack.cpp59 void copyNewAnimationsToActiveInterpolationMap(const WillBeHeapVector<RawPtrWillBeMember<InertAnimation> >& newAnimations, WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& result) argument
61 for (size_t i = 0; i < newAnimations.size(); ++i) {
62 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > sample = newAnimations[i]->sample(0);
93 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > AnimationStack::activeInterpolations(AnimationStack* animationStack, const WillBeHeapVector<RawPtrWillBeMember<InertAnimation> >* newAnimations, const WillBeHeapHashSet<RawPtrWillBeMember<const AnimationPlayer> >* cancelledAnimationPlayers, Animation::Priority priority, double timelineCurrentTime) argument
112 if (newAnimations)
113 copyNewAnimationsToActiveInterpolationMap(*newAnimations, result);
H A DAnimationStack.h56 static WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > activeInterpolations(AnimationStack*, const WillBeHeapVector<RawPtrWillBeMember<InertAnimation> >* newAnimations, const WillBeHeapHashSet<RawPtrWillBeMember<const AnimationPlayer> >* cancelledAnimationPlayers, Animation::Priority, double timelineCurrentTime);
H A DAnimationStackTest.cpp98 WillBeHeapVector<RawPtrWillBeMember<InertAnimation> > newAnimations; local
101 newAnimations.append(inert1.get());
102 newAnimations.append(inert2.get());
103 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), &newAnimations, 0, Animation::DefaultPriority, 10);
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimations.cpp328 for (WillBeHeapVector<CSSAnimationUpdate::NewAnimation>::const_iterator iter = update->newAnimations().begin(); iter != update->newAnimations().end(); ++iter) {
546 if (update->newAnimations().isEmpty() && update->cancelledAnimationAnimationPlayers().isEmpty()) {
552 WillBeHeapVector<RawPtrWillBeMember<InertAnimation> > newAnimations;
553 for (size_t i = 0; i < update->newAnimations().size(); ++i) {
554 newAnimations.append(update->newAnimations()[i].animation.get());
556 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > activeInterpolationsForAnimations(AnimationStack::activeInterpolations(animationStack, &newAnimations, &update->cancelledAnimationAnimationPlayers(), Animation::DefaultPriority, timelineCurrentTime));
H A DCSSAnimations.h102 const WillBeHeapVector<NewAnimation>& newAnimations() const { return m_newAnimations; } function in class:blink::FINAL

Completed in 613 milliseconds