Lines Matching full:deque
5 #include <deque>
52 deque<int> d;
71 deque<int>::iterator dit = d.begin();
72 deque<int>::const_iterator cdit(d.begin());
82 deque<int> d;
88 deque<int>::iterator dit;
158 deque<int> d;
159 deque<int> const& cd = d;
185 deque<int> ref;
190 deque<deque<int> > d_d_int(1, ref);
211 typedef deque<int, StackAllocator<int> > DequeInt;
260 //This test check that deque implementation do not over optimize
265 deque<Point> d1(1);
268 deque<PointEx> d2(d1.begin(), d1.end());
280 deque<int> dint;
289 deque<int>::iterator it(dint.begin() + 1);
327 deque<IncompleteClass> instances;
328 typedef deque<IncompleteClass>::size_type size;