/external/libcxx/test/std/strings/basic.string/string.cons/ |
D | implicit_deduction_guides.pass.cpp | 52 using TestSizeT = test_allocator<char>::size_type; in main() 72 std::basic_string s(6ull, 'a', test_allocator<char>{}); in main() 73 ASSERT_SAME_TYPE(decltype(s), BStr<char,test_allocator<char>>); in main() 76 std::basic_string w(2ull, L'b', test_allocator<wchar_t>{}); in main() 77 ASSERT_SAME_TYPE(decltype(w), BStr<wchar_t, test_allocator<wchar_t>>); in main() 88 test_allocator<wchar_t>>; in main() 102 test_allocator<wchar_t>>; in main() 104 std::basic_string w(win, (TestSizeT)3, test_allocator<wchar_t>{}); in main() 116 test_allocator<wchar_t>>; in main() 130 test_allocator<wchar_t>>; in main() [all …]
|
/external/libcxx/test/std/containers/sequences/vector.bool/ |
D | move_alloc.pass.cpp | 24 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5)); in main() 25 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5)); in main() 31 std::vector<bool, test_allocator<bool> > l2(std::move(l), test_allocator<bool>(6)); in main() 34 assert(l2.get_allocator() == test_allocator<bool>(6)); in main() 37 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5)); in main() 38 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5)); in main() 44 std::vector<bool, test_allocator<bool> > l2(std::move(l), test_allocator<bool>(5)); in main() 47 assert(l2.get_allocator() == test_allocator<bool>(5)); in main()
|
D | assign_move.pass.cpp | 24 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5)); in main() 25 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5)); in main() 31 std::vector<bool, test_allocator<bool> > l2(test_allocator<bool>(5)); in main() 38 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5)); in main() 39 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5)); in main() 45 std::vector<bool, test_allocator<bool> > l2(test_allocator<bool>(6)); in main() 49 assert(l2.get_allocator() == test_allocator<bool>(6)); in main()
|
D | move.pass.cpp | 25 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5)); in main() 26 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5)); in main() 32 std::vector<bool, test_allocator<bool> > l2 = std::move(l); in main() 65 using Vect = std::vector<bool, test_allocator<bool> >; in main() 67 Vect v(test_allocator<bool>(42, 101)); in main()
|
D | assign_copy.pass.cpp | 22 std::vector<bool, test_allocator<bool> > l(3, true, test_allocator<bool>(5)); in main() 23 std::vector<bool, test_allocator<bool> > l2(l, test_allocator<bool>(3)); in main() 26 assert(l2.get_allocator() == test_allocator<bool>(3)); in main()
|
/external/libcxx/test/std/containers/sequences/list/list.cons/ |
D | move_alloc.pass.cpp | 25 std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 26 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 32 … std::list<MoveOnly, test_allocator<MoveOnly> > l2(std::move(l), test_allocator<MoveOnly>(6)); in main() 35 assert(l2.get_allocator() == test_allocator<MoveOnly>(6)); in main() 38 std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 39 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 45 … std::list<MoveOnly, test_allocator<MoveOnly> > l2(std::move(l), test_allocator<MoveOnly>(5)); in main() 48 assert(l2.get_allocator() == test_allocator<MoveOnly>(5)); in main()
|
D | assign_move.pass.cpp | 25 std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 26 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 32 std::list<MoveOnly, test_allocator<MoveOnly> > l2(test_allocator<MoveOnly>(5)); in main() 39 std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 40 std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 46 std::list<MoveOnly, test_allocator<MoveOnly> > l2(test_allocator<MoveOnly>(6)); in main() 50 assert(l2.get_allocator() == test_allocator<MoveOnly>(6)); in main()
|
D | copy_alloc.pass.cpp | 23 std::list<int, test_allocator<int> > l(3, 2, test_allocator<int>(5)); in main() 24 std::list<int, test_allocator<int> > l2(l, test_allocator<int>(3)); in main() 26 assert(l2.get_allocator() == test_allocator<int>(3)); in main()
|
/external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
D | ctor_move_alloc.pass.cpp | 37 : public std::priority_queue<T, std::vector<T, test_allocator<T> > > 39 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; 43 explicit test(const test_allocator<int>& a) : base(a) {} in test() 44 test(const value_compare& comp, const test_allocator<int>& a) in test() 47 const test_allocator<int>& a) : base(comp, c, a) {} in test() 49 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test() 50 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 51 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 60 make<std::vector<MoveOnly, test_allocator<MoveOnly> > >(5), in main() 61 test_allocator<MoveOnly>(2)); in main() [all …]
|
D | ctor_copy_alloc.pass.cpp | 32 : public std::priority_queue<T, std::vector<T, test_allocator<T> > > 34 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; 38 explicit test(const test_allocator<int>& a) : base(a) {} in test() 39 test(const value_compare& comp, const test_allocator<int>& a) in test() 42 const test_allocator<int>& a) : base(comp, c, a) {} in test() 43 test(const test& q, const test_allocator<int>& a) : base(q, a) {} in test() 44 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 52 make<std::vector<int, test_allocator<int> > >(5), in main() 53 test_allocator<int>(2)); in main() 54 test<int> q(qo, test_allocator<int>(6)); in main() [all …]
|
D | ctor_comp_rcont_alloc.pass.cpp | 34 : public std::priority_queue<T, std::vector<T, test_allocator<T> > > 36 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; 40 explicit test(const test_allocator<int>& a) : base(a) {} in test() 41 test(const value_compare& comp, const test_allocator<int>& a) in test() 44 const test_allocator<int>& a) : base(comp, c, a) {} in test() 47 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test() 48 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 50 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 57 typedef std::vector<int, test_allocator<int> > C; in main() 58 test<int> q(std::less<int>(), make<C>(5), test_allocator<int>(3)); in main() [all …]
|
D | ctor_comp_cont_alloc.pass.cpp | 34 : public std::priority_queue<T, std::vector<T, test_allocator<T> > > 36 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; 40 explicit test(const test_allocator<int>& a) : base(a) {} in test() 41 test(const value_compare& comp, const test_allocator<int>& a) in test() 44 const test_allocator<int>& a) : base(comp, c, a) {} in test() 47 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test() 48 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 50 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 57 typedef std::vector<int, test_allocator<int> > C; in main() 59 test<int> q(std::less<int>(), v, test_allocator<int>(3)); in main() [all …]
|
D | ctor_alloc.pass.cpp | 23 : public std::priority_queue<T, std::vector<T, test_allocator<T> > > 25 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; 29 explicit test(const test_allocator<int>& a) : base(a) {} in test() 30 test(const value_compare& comp, const test_allocator<int>& a) in test() 33 const test_allocator<int>& a) : base(comp, c, a) {} in test() 36 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test() 37 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 39 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 46 test<int> q((test_allocator<int>(3))); in main() 47 assert(q.c.get_allocator() == test_allocator<int>(3)); in main()
|
D | ctor_comp_alloc.pass.cpp | 23 : public std::priority_queue<T, std::vector<T, test_allocator<T> > > 25 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; 29 explicit test(const test_allocator<int>& a) : base(a) {} in test() 30 test(const value_compare& comp, const test_allocator<int>& a) in test() 33 const test_allocator<int>& a) : base(comp, c, a) {} in test() 36 const test_allocator<int>& a) : base(comp, std::move(c), a) {} in test() 37 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 39 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 46 test<int> q(std::less<int>(), test_allocator<int>(3)); in main() 47 assert(q.c.get_allocator() == test_allocator<int>(3)); in main()
|
/external/libcxx/test/std/containers/container.requirements/container.requirements.general/ |
D | allocator_move.pass.cpp | 67 test<std::vector<int, test_allocator<int> > >(); in main() 68 test<std::vector<bool, test_allocator<bool> > >(); in main() 69 test<std::list<int, test_allocator<int> > >(); in main() 70 test<std::forward_list<int, test_allocator<int> > >(); in main() 78 test<std::deque<int, test_allocator<int> > >(stored_allocators); in main() 81 test<std::set<int, std::less<int>, test_allocator<int> > >(); in main() 82 test<std::multiset<int, std::less<int>, test_allocator<int> > >(); in main() 85 test<std::map<int, int, std::less<int>, test_allocator<KV> > >(); in main() 86 test<std::multimap<int, int, std::less<int>, test_allocator<KV> > >(); in main() 96 test_allocator<int> > >(stored_allocators); in main() [all …]
|
/external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/ |
D | ctor_alloc.pass.cpp | 22 : private std::queue<int, std::deque<int, test_allocator<int> > > 24 typedef std::queue<int, std::deque<int, test_allocator<int> > > base; 26 explicit test(const test_allocator<int>& a) : base(a) {} in test() 27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() 29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() 30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 37 test q(test_allocator<int>(3)); in main() 38 assert(q.get_allocator() == test_allocator<int>(3)); in main()
|
D | ctor_container_alloc.pass.cpp | 32 typedef std::deque<int, test_allocator<int> > C; 39 explicit test(const test_allocator<int>& a) : base(a) {} in test() 40 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() 42 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() 43 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 45 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 51 test q(d, test_allocator<int>(4)); in main() 52 assert(q.get_allocator() == test_allocator<int>(4)); in main()
|
/external/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/ |
D | ctor_alloc.pass.cpp | 22 : private std::stack<int, std::deque<int, test_allocator<int> > > 24 typedef std::stack<int, std::deque<int, test_allocator<int> > > base; 26 explicit test(const test_allocator<int>& a) : base(a) {} in test() 27 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() 29 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() 30 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 32 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 37 test q(test_allocator<int>(3)); in main() 38 assert(q.get_allocator() == test_allocator<int>(3)); in main()
|
D | ctor_container_alloc.pass.cpp | 32 typedef std::deque<int, test_allocator<int> > C; 39 explicit test(const test_allocator<int>& a) : base(a) {} in test() 40 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() 42 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test() 43 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {} in test() 45 test_allocator<int> get_allocator() {return c.get_allocator();} in get_allocator() 51 test q(d, test_allocator<int>(4)); in main() 52 assert(q.get_allocator() == test_allocator<int>(4)); in main()
|
/external/libcxx/test/std/containers/sequences/vector/vector.cons/ |
D | move_alloc.pass.cpp | 26 std::vector<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 27 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 37 … std::vector<MoveOnly, test_allocator<MoveOnly> > l2(std::move(l), test_allocator<MoveOnly>(6)); in main() 40 assert(l2.get_allocator() == test_allocator<MoveOnly>(6)); in main() 44 std::vector<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 45 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 55 … std::vector<MoveOnly, test_allocator<MoveOnly> > l2(std::move(l), test_allocator<MoveOnly>(5)); in main() 58 assert(l2.get_allocator() == test_allocator<MoveOnly>(5)); in main()
|
D | assign_move.pass.cpp | 26 std::vector<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 27 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 35 std::vector<MoveOnly, test_allocator<MoveOnly> > l2(test_allocator<MoveOnly>(5)); in main() 43 std::vector<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 44 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 54 std::vector<MoveOnly, test_allocator<MoveOnly> > l2(test_allocator<MoveOnly>(6)); in main() 58 assert(l2.get_allocator() == test_allocator<MoveOnly>(6)); in main()
|
D | move.pass.cpp | 28 std::vector<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5)); in main() 29 std::vector<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5)); in main() 39 std::vector<MoveOnly, test_allocator<MoveOnly> > l2 = std::move(l); in main() 105 using Vect = std::vector<int, test_allocator<int> >; in main() 106 Vect v(test_allocator<int>(42, 101)); in main() 111 const test_allocator<int>& a = v.get_allocator(); in main() 123 const test_allocator<int>& a = v.get_allocator(); in main() 128 const test_allocator<int>& a = v2.get_allocator(); in main()
|
D | assign_copy.pass.cpp | 22 std::vector<int, test_allocator<int> > l(3, 2, test_allocator<int>(5)); in main() 23 std::vector<int, test_allocator<int> > l2(l, test_allocator<int>(3)); in main() 26 assert(l2.get_allocator() == test_allocator<int>(3)); in main()
|
/external/libcxx/test/support/ |
D | test_allocator.h | 72 class test_allocator 77 template <class U> friend class test_allocator; variable 88 template <class U> struct rebind {typedef test_allocator<U> other;}; 90 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {++count;} in test_allocator() function 91 explicit test_allocator(int i, int id = 0) TEST_NOEXCEPT : data_(i), id_(id) in data_() 93 test_allocator(const test_allocator& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function 101 test_allocator(test_allocator&& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function 112 test_allocator(const test_allocator<U>& a) TEST_NOEXCEPT : data_(a.data_), in test_allocator() function 117 ~test_allocator() TEST_NOEXCEPT { in ~test_allocator() 152 friend bool operator==(const test_allocator& x, const test_allocator& y) [all …]
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/ |
D | reset_pointer_deleter_allocator.pass.cpp | 49 p.reset(ptr, test_deleter<A>(3), test_allocator<A>(4)); in main() 59 assert(test_allocator<A>::count == 1); in main() 60 assert(test_allocator<A>::alloc_count == 1); in main() 65 assert(test_allocator<A>::count == 0); in main() 66 assert(test_allocator<A>::alloc_count == 0); in main() 70 p.reset(ptr, test_deleter<A>(3), test_allocator<A>(4)); in main() 80 assert(test_allocator<A>::count == 1); in main() 81 assert(test_allocator<A>::alloc_count == 1); in main() 86 assert(test_allocator<A>::count == 0); in main() 87 assert(test_allocator<A>::alloc_count == 0); in main()
|