Home | History | Annotate | Download | only in vector.bool

Lines Matching full:vector

10 // <vector>
11 // vector<bool>
13 // vector(const vector& v);
15 #include <vector>
36 test(std::vector<bool>(a, an));
39 std::vector<bool, test_allocator<bool> > v(3, 2, test_allocator<bool>(5));
40 std::vector<bool, test_allocator<bool> > v2 = v;
46 std::vector<bool, other_allocator<bool> > v(3, 2, other_allocator<bool>(5));
47 std::vector<bool, other_allocator<bool> > v2 = v;
56 test(std::vector<bool, min_allocator<bool>>(a, an));
59 std::vector<bool, min_allocator<bool> > v(3, 2, min_allocator<bool>());
60 std::vector<bool, min_allocator<bool> > v2 = v;