Home | History | Annotate | Download | only in heap

Lines Matching defs:Deque

37 #include "wtf/Deque.h"
308 void trace(const Deque<T, N>& deque)
310 OffHeapCollectionTraceTrait<Deque<T, N> >::trace(this, deque);
475 struct OffHeapCollectionTraceTrait<WTF::Deque<T, N> > {
476 typedef WTF::Deque<T, N> Deque;
478 static void trace(Visitor* visitor, const Deque& deque)
480 if (deque.isEmpty())
482 for (typename Deque::const_iterator it = deque.begin(), end = deque.end(); it != end; ++it)