Home
last modified time | relevance | path

Searched refs:other_allocator (Results 1 – 25 of 144) sorted by relevance

123456

/external/libcxx/test/std/containers/sequences/vector.bool/
Dmove_alloc.pass.cpp50 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()
Dassign_copy.pass.cpp29 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()
Dassign_move.pass.cpp52 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()
Dcopy_alloc.pass.cpp46 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()
Dmove.pass.cpp38 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()
Dcopy.pass.cpp48 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/
Dmove_alloc.pass.cpp51 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()
Dcopy_alloc.pass.cpp29 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()
Dassign_copy.pass.cpp29 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()
Dassign_move.pass.cpp53 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()
Dmove.pass.cpp38 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()
Dcopy.pass.cpp37 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/
Dassign_copy.pass.cpp29 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()
Dmove_alloc.pass.cpp62 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()
Dcopy_alloc.pass.cpp48 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()
Dassign_move.pass.cpp62 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()
Dcopy.pass.cpp53 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()
Dmove.pass.cpp46 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/
Dop_equal.pass.cpp43 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()
Dcopy.pass.cpp44 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()
Dcopy_alloc.pass.cpp40 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/
Dtest_allocator.h258 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/
Dassign_copy.pass.cpp74 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/
Dcopy_assign.pass.cpp48 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()
Dmove_assign.pass.cpp49 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()

123456