Home | History | Annotate | Download | only in animation

Lines Matching defs:scheduled

88     OwnPtrWillBeMember<AnimationsLinkedHashSet>& scheduled = m_scheduledAnimations.add(key, nullptr).storedValue->value;
89 if (!scheduled)
90 scheduled = adoptPtrWillBeNoop(new AnimationsLinkedHashSet);
91 ASSERT(!scheduled->contains(animation));
92 scheduled->add(animation);
110 AnimationsLinkedHashSet* scheduled = it->value.get();
111 ASSERT(scheduled);
112 AnimationsLinkedHashSet::iterator itAnimation = scheduled->find(animation);
113 ASSERT(itAnimation != scheduled->end());
114 scheduled->remove(itAnimation);
116 if (scheduled->isEmpty())
181 // been scheduled at this point.
244 AnimationsLinkedHashSet* scheduled = it->value.get();
245 for (AnimationsLinkedHashSet::const_iterator itAnimation = scheduled->begin(), itAnimationEnd = scheduled->end(); itAnimation != itAnimationEnd; ++itAnimation)
393 AnimationsLinkedHashSet* scheduled = it->value.get();
400 copyToVector(*scheduled, scheduledAnimations);