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

Lines Matching refs:vector

10 // <vector>
12 // vector(vector&& c, const allocator_type& a);
14 #include <vector>
23 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
30 std::vector<bool, test_allocator<bool> > l2(std::move(l), test_allocator<bool>(6));
36 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
37 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
43 std::vector<bool, test_allocator<bool> > l2(std::move(l), test_allocator<bool>(5));
49 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
50 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
56 std::vector<bool, other_allocator<bool> > l2(std::move(l), other_allocator<bool>(4));
63 std::vector<bool, min_allocator<bool> > l(min_allocator<bool>{});
64 std::vector<bool, min_allocator<bool> > lo(min_allocator<bool>{});
70 std::vector<bool, min_allocator<bool> > l2(std::move(l), min_allocator<bool>());