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

Lines Matching full:vector

10 // <vector>
11 // vector<bool>
13 // void swap(vector& x);
15 #include <vector>
23 std::vector<bool> v1(100);
24 std::vector<bool> v2(200);
33 std::vector<bool, A> v1(100, true, A(1));
34 std::vector<bool, A> v2(200, false, A(2));
45 std::vector<bool, A> v1(100, true, A(1));
46 std::vector<bool, A> v2(200, false, A(2));
56 std::vector<bool> v(2);
57 std::vector<bool>::reference r1 = v[0];
58 std::vector<bool>::reference r2 = v[1];
67 std::vector<bool, min_allocator<bool>> v1(100);
68 std::vector<bool, min_allocator<bool>> v2(200);
77 std::vector<bool, A> v1(100, true, A());
78 std::vector<bool, A> v2(200, false, A());
88 std::vector<bool, min_allocator<bool>> v(2);
89 std::vector<bool, min_allocator<bool>>::reference r1 = v[0];
90 std::vector<bool, min_allocator<bool>>::reference r2 = v[1];