Home | History | Annotate | Download | only in deque.cons

Lines Matching refs:deque

10 // <deque>
12 // deque(const deque&);
14 #include <deque>
32 test(std::deque<int>(ab, an));
35 std::deque<int, test_allocator<int> > v(3, 2, test_allocator<int>(5));
36 std::deque<int, test_allocator<int> > v2 = v;
42 std::deque<int, other_allocator<int> > v(3, 2, other_allocator<int>(5));
43 std::deque<int, other_allocator<int> > v2 = v;
52 test(std::deque<int, min_allocator<int>>(ab, an));
55 std::deque<int, min_allocator<int> > v(3, 2, min_allocator<int>());
56 std::deque<int, min_allocator<int> > v2 = v;