/external/libcxx/test/std/containers/sequences/vector.bool/ |
D | move_alloc.pass.cpp | 50 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5)); in main() 51 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5)); in main() 57 std::vector<bool, other_allocator<bool> > l2(std::move(l), other_allocator<bool>(4)); in main() 60 assert(l2.get_allocator() == other_allocator<bool>(4)); in main()
|
D | assign_copy.pass.cpp | 29 std::vector<bool, other_allocator<bool> > l(3, true, other_allocator<bool>(5)); in main() 30 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3)); in main() 33 assert(l2.get_allocator() == other_allocator<bool>(5)); in main()
|
D | assign_move.pass.cpp | 52 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5)); in main() 53 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5)); in main() 59 std::vector<bool, other_allocator<bool> > l2(other_allocator<bool>(6)); in main()
|
D | copy_alloc.pass.cpp | 46 std::vector<bool, other_allocator<bool> > l(3, true, other_allocator<bool>(5)); in main() 47 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3)); in main() 49 assert(l2.get_allocator() == other_allocator<bool>(3)); in main()
|
D | move.pass.cpp | 38 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5)); in main() 39 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5)); in main() 45 std::vector<bool, other_allocator<bool> > l2 = std::move(l); in main()
|
D | copy.pass.cpp | 48 std::vector<bool, other_allocator<bool> > v(3, true, other_allocator<bool>(5)); in main() 49 std::vector<bool, other_allocator<bool> > v2 = v; in main() 51 assert(v2.get_allocator() == other_allocator<bool>(-2)); in main()
|
/external/libcxx/test/std/containers/sequences/list/list.cons/ |
D | move_alloc.pass.cpp | 51 std::list<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main() 52 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() 58 … std::list<MoveOnly, other_allocator<MoveOnly> > l2(std::move(l), other_allocator<MoveOnly>(4)); in main() 61 assert(l2.get_allocator() == other_allocator<MoveOnly>(4)); in main()
|
D | copy_alloc.pass.cpp | 29 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5)); in main() 30 std::list<int, other_allocator<int> > l2(l, other_allocator<int>(3)); in main() 32 assert(l2.get_allocator() == other_allocator<int>(3)); in main()
|
D | assign_copy.pass.cpp | 29 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5)); in main() 30 std::list<int, other_allocator<int> > l2(l, other_allocator<int>(3)); in main() 33 assert(l2.get_allocator() == other_allocator<int>(5)); in main()
|
D | assign_move.pass.cpp | 53 std::list<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main() 54 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() 60 std::list<MoveOnly, other_allocator<MoveOnly> > l2(other_allocator<MoveOnly>(6)); in main()
|
D | move.pass.cpp | 38 std::list<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main() 39 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() 45 std::list<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l); in main()
|
D | copy.pass.cpp | 37 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5)); in main() 38 std::list<int, other_allocator<int> > l2 = l; in main() 40 assert(l2.get_allocator() == other_allocator<int>(-2)); in main()
|
/external/libcxx/test/std/containers/sequences/vector/vector.cons/ |
D | assign_copy.pass.cpp | 29 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5)); in main() 30 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3)); in main() 33 assert(l2.get_allocator() == other_allocator<int>(5)); in main()
|
D | move_alloc.pass.cpp | 62 std::vector<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main() 63 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() 73 … std::vector<MoveOnly, other_allocator<MoveOnly> > l2(std::move(l), other_allocator<MoveOnly>(4)); in main() 76 assert(l2.get_allocator() == other_allocator<MoveOnly>(4)); in main()
|
D | copy_alloc.pass.cpp | 48 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5)); in main() 49 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3)); in main() 51 assert(l2.get_allocator() == other_allocator<int>(3)); in main()
|
D | assign_move.pass.cpp | 62 std::vector<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main() 63 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() 73 std::vector<MoveOnly, other_allocator<MoveOnly> > l2(other_allocator<MoveOnly>(6)); in main()
|
D | copy.pass.cpp | 53 std::vector<int, other_allocator<int> > v(3, 2, other_allocator<int>(5)); in main() 54 std::vector<int, other_allocator<int> > v2 = v; in main() 58 assert(v2.get_allocator() == other_allocator<int>(-2)); in main()
|
D | move.pass.cpp | 46 std::vector<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main() 47 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main() 57 std::vector<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l); in main()
|
/external/libcxx/test/std/containers/sequences/deque/deque.cons/ |
D | op_equal.pass.cpp | 43 std::deque<int, other_allocator<int> > l(3, 2, other_allocator<int>(5)); in main() 44 std::deque<int, other_allocator<int> > l2(l, other_allocator<int>(3)); in main() 47 assert(l2.get_allocator() == other_allocator<int>(5)); in main()
|
D | copy.pass.cpp | 44 std::deque<int, other_allocator<int> > v(3, 2, other_allocator<int>(5)); in main() 45 std::deque<int, other_allocator<int> > v2 = v; in main() 47 assert(v2.get_allocator() == other_allocator<int>(-2)); in main()
|
D | copy_alloc.pass.cpp | 40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3)), in main() 41 other_allocator<int>(4)); in main()
|
/external/libcxx/test/support/ |
D | test_allocator.h | 258 class other_allocator 262 template <class U> friend class other_allocator; variable 267 other_allocator() : data_(-1) {} in other_allocator() function 268 explicit other_allocator(int i) : data_(i) {} in other_allocator() function 269 template <class U> other_allocator(const other_allocator<U>& a) in other_allocator() function 276 other_allocator select_on_container_copy_construction() const in select_on_container_copy_construction() 277 {return other_allocator(-2);} in select_on_container_copy_construction() 279 friend bool operator==(const other_allocator& x, const other_allocator& y) 281 friend bool operator!=(const other_allocator& x, const other_allocator& y)
|
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/ |
D | assign_copy.pass.cpp | 74 typedef other_allocator<int> A; in main() 86 typedef other_allocator<int> A; in main() 98 typedef other_allocator<int> A; in main() 110 typedef other_allocator<int> A; in main()
|
/external/libcxx/test/std/re/re.results/re.results.const/ |
D | copy_assign.pass.cpp | 48 test<char> (other_allocator<std::sub_match<const char*> >(3)); in main() 49 test<wchar_t>(other_allocator<std::sub_match<const wchar_t*> >(3)); in main()
|
D | move_assign.pass.cpp | 49 test<char> (other_allocator<std::sub_match<const char*> >(3)); in main() 50 test<wchar_t>(other_allocator<std::sub_match<const wchar_t*> >(3)); in main()
|