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

Lines Matching refs:lo

24         std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
28 lo.push_back(i);
31 assert(l2 == lo);
37 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
41 lo.push_back(i);
44 assert(l2 == lo);
50 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
54 lo.push_back(i);
57 assert(l2 == lo);
64 std::vector<bool, min_allocator<bool> > lo(min_allocator<bool>{});
68 lo.push_back(i);
71 assert(l2 == lo);