Home
last modified time | relevance | path

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

123456

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
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()
Dmove_alloc.pass.cpp50 std::list<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main()
51 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main()
57 … std::list<MoveOnly, other_allocator<MoveOnly> > l2(std::move(l), other_allocator<MoveOnly>(4)); in main()
60 assert(l2.get_allocator() == other_allocator<MoveOnly>(4)); in main()
Dcopy.pass.cpp35 std::list<int, other_allocator<int> > l(3, 2, other_allocator<int>(5)); in main()
36 std::list<int, other_allocator<int> > l2 = l; in main()
38 assert(l2.get_allocator() == other_allocator<int>(-2)); in main()
Dassign_move.pass.cpp52 std::list<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main()
53 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main()
59 std::list<MoveOnly, other_allocator<MoveOnly> > l2(other_allocator<MoveOnly>(6)); in main()
Dmove.pass.cpp37 std::list<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main()
38 std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main()
44 std::list<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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()
Dcopy_alloc.pass.cpp46 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5)); in main()
47 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3)); in main()
49 assert(l2.get_allocator() == other_allocator<int>(3)); in main()
Dmove_alloc.pass.cpp61 std::vector<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main()
62 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main()
72 … std::vector<MoveOnly, other_allocator<MoveOnly> > l2(std::move(l), other_allocator<MoveOnly>(4)); in main()
75 assert(l2.get_allocator() == other_allocator<MoveOnly>(4)); in main()
Dassign_move.pass.cpp61 std::vector<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main()
62 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main()
72 std::vector<MoveOnly, other_allocator<MoveOnly> > l2(other_allocator<MoveOnly>(6)); in main()
Dcopy.pass.cpp51 std::vector<int, other_allocator<int> > v(3, 2, other_allocator<int>(5)); in main()
52 std::vector<int, other_allocator<int> > v2 = v; in main()
56 assert(v2.get_allocator() == other_allocator<int>(-2)); in main()
Dmove.pass.cpp43 std::vector<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5)); in main()
44 std::vector<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5)); in main()
54 std::vector<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
Dassign_copy.pass.cpp29 std::vector<bool, other_allocator<bool> > l(3, 2, 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()
Dmove_alloc.pass.cpp49 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5)); in main()
50 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5)); in main()
56 std::vector<bool, other_allocator<bool> > l2(std::move(l), other_allocator<bool>(4)); in main()
59 assert(l2.get_allocator() == other_allocator<bool>(4)); in main()
Dcopy_alloc.pass.cpp44 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5)); in main()
45 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3)); in main()
47 assert(l2.get_allocator() == other_allocator<bool>(3)); in main()
Dassign_move.pass.cpp51 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5)); in main()
52 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5)); in main()
58 std::vector<bool, other_allocator<bool> > l2(other_allocator<bool>(6)); in main()
Dmove.pass.cpp36 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5)); in main()
37 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5)); in main()
43 std::vector<bool, other_allocator<bool> > l2 = std::move(l); in main()
Dcopy.pass.cpp46 std::vector<bool, other_allocator<bool> > v(3, 2, other_allocator<bool>(5)); in main()
47 std::vector<bool, other_allocator<bool> > v2 = v; in main()
49 assert(v2.get_allocator() == other_allocator<bool>(-2)); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/
Dtest_allocator.h120 class other_allocator
124 template <class U> friend class other_allocator; variable
129 other_allocator() : data_(-1) {} in other_allocator() function
130 explicit other_allocator(int i) : data_(i) {} in other_allocator() function
131 template <class U> other_allocator(const other_allocator<U>& a) in other_allocator() function
138 other_allocator select_on_container_copy_construction() const in select_on_container_copy_construction()
139 {return other_allocator(-2);} in select_on_container_copy_construction()
141 friend bool operator==(const other_allocator& x, const other_allocator& y)
143 friend bool operator!=(const other_allocator& x, const other_allocator& y)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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.cpp42 std::deque<int, other_allocator<int> > v(3, 2, other_allocator<int>(5)); in main()
43 std::deque<int, other_allocator<int> > v2 = v; in main()
45 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()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
Dtest_allocator.h187 class other_allocator
191 template <class U> friend class other_allocator; variable
196 other_allocator() : data_(-1) {} in other_allocator() function
197 explicit other_allocator(int i) : data_(i) {} in other_allocator() function
198 template <class U> other_allocator(const other_allocator<U>& a) in other_allocator() function
205 other_allocator select_on_container_copy_construction() const in select_on_container_copy_construction()
206 {return other_allocator(-2);} in select_on_container_copy_construction()
208 friend bool operator==(const other_allocator& x, const other_allocator& y)
210 friend bool operator!=(const other_allocator& x, const other_allocator& y)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.cnstr/
Dcopy.pass.cpp72 other_allocator<int> in main()
88 other_allocator<int>(10) in main()
99 assert(c.get_allocator() == other_allocator<int>(-2)); in main()

123456