| /llvm-project-15.0.7/libcxx/include/ |
| H A D | queue | 25 typedef typename container_type::reference reference; 30 container_type c; 42 explicit queue(const container_type& c); 43 explicit queue(container_type&& c) 49 queue(const container_type& c, const Alloc& a); 51 queue(container_type&& c, const Alloc& a); 123 container_type c; 272 container_type c; 336 queue(container_type&& __c, const _Alloc& __a, 507 container_type c; [all …]
|
| H A D | stack | 23 typedef Container container_type; 24 typedef typename container_type::value_type value_type; 25 typedef typename container_type::reference reference; 27 typedef typename container_type::size_type size_type; 30 container_type c; 42 explicit stack(const container_type& c); 43 explicit stack(container_type&& c); 148 container_type c; 179 explicit stack(const container_type& __c) : c(__c) {} 188 stack(const container_type& __c, const _Alloc& __a, [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
| H A D | ctor_comp_alloc.pass.cpp | 25 typedef typename base::container_type container_type; typedef 31 test(const value_compare& compare, const container_type& container, in test() 34 test(const value_compare& compare, container_type&& container, in test()
|
| H A D | ctor_alloc.pass.cpp | 25 typedef typename base::container_type container_type; typedef 31 test(const value_compare& comp, const container_type& container, in test() 34 test(const value_compare& comp, container_type&& container, in test()
|
| H A D | ctor_comp_cont_alloc.pass.cpp | 36 typedef typename base::container_type container_type; typedef 42 test(const value_compare& compare, const container_type& container, in test() 45 test(const value_compare& compare, container_type&& container, in test()
|
| H A D | ctor_comp_rcont_alloc.pass.cpp | 36 typedef typename base::container_type container_type; typedef 42 test(const value_compare& compare, const container_type& container, in test() 45 test(const value_compare& compare, container_type&& container, in test()
|
| H A D | ctor_move_alloc.pass.cpp | 40 typedef typename base::container_type container_type; typedef 46 test(const value_compare& compare, const container_type& container, in test() 48 test(const value_compare& compare, container_type&& container, in test()
|
| H A D | ctor_copy_alloc.pass.cpp | 35 typedef typename base::container_type container_type; typedef 41 test(const value_compare& compare, const container_type& container, in test()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/ |
| H A D | ctor_rcontainer_alloc.pass.cpp | 42 typedef typename base::container_type container_type; typedef 45 test(const container_type& container, const allocator_type& a) : base(container, a) {} in test() 46 test(container_type&& container, const allocator_type& a) : base(std::move(container), a) {} in test()
|
| H A D | ctor_rqueue_alloc.pass.cpp | 42 typedef typename base::container_type container_type; typedef 45 test(const container_type& container, const allocator_type& a) : base(container, a) {} in test() 46 test(container_type&& container, const allocator_type& a) : base(std::move(container), a) {} in test()
|
| H A D | ctor_queue_alloc.pass.cpp | 38 typedef typename base::container_type container_type; typedef 41 test(const container_type& container, const allocator_type& a) : base(container, a) {} in test()
|
| H A D | ctor_alloc.pass.cpp | 26 test(const container_type& container, const test_allocator<int>& a) : base(container, a) {} in test() 28 … test(container_type&& container, const test_allocator<int>& a) : base(std::move(container), a) {} in test()
|
| H A D | ctor_container_alloc.pass.cpp | 39 test(const container_type& container, const test_allocator<int>& a) : base(container, a) {} in test() 41 … test(container_type&& container, const test_allocator<int>& a) : base(std::move(container), a) {} in test()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/ |
| H A D | ctor_rcontainer_alloc.pass.cpp | 42 typedef typename base::container_type container_type; typedef 45 test(const container_type& cont, const allocator_type& a) : base(cont, a) {} in test() 46 test(container_type&& cont, const allocator_type& a) : base(std::move(cont), a) {} in test()
|
| H A D | ctor_rqueue_alloc.pass.cpp | 42 typedef typename base::container_type container_type; typedef 45 test(const container_type& cont, const allocator_type& a) : base(cont, a) {} in test() 46 test(container_type&& cont, const allocator_type& a) : base(std::move(cont), a) {} in test()
|
| H A D | ctor_copy_alloc.pass.cpp | 38 typedef typename base::container_type container_type; typedef 41 test(const container_type& cont, const allocator_type& a) : base(cont, a) {} in test()
|
| H A D | ctor_alloc.pass.cpp | 26 test(const container_type& cont, const test_allocator<int>& a) : base(cont, a) {} in test() 28 test(container_type&& cont, const test_allocator<int>& a) : base(std::move(cont), a) {} in test()
|
| H A D | ctor_container_alloc.pass.cpp | 39 test(const container_type& cont, const test_allocator<int>& a) : base(cont, a) {} in test() 41 test(container_type&& cont, const test_allocator<int>& a) : base(std::move(cont), a) {} in test()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/stack/stack.defn/ |
| H A D | types.pass.cpp | 51 static_assert(( std::is_same<std::stack<int>::container_type, std::deque<int> >::value), ""); in main() 52 …static_assert(( std::is_same<std::stack<int, std::vector<int> >::container_type, std::vector<int> … in main()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/queue/queue.defn/ |
| H A D | types.pass.cpp | 50 static_assert(( std::is_same<std::queue<int>::container_type, std::deque<int> >::value), ""); in main() 51 …static_assert(( std::is_same<std::queue<int, std::vector<int> >::container_type, std::vector<int> … in main()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/priority.queue/ |
| H A D | types.pass.cpp | 57 …static_assert(( std::is_same<std::priority_queue<int>::container_type, std::vector<int> >::value),… in main() 58 …static_assert(( std::is_same<std::priority_queue<int, std::deque<int> >::container_type, std::dequ… in main()
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/queue/queue.cons/ |
| H A D | deduct.pass.cpp | 49 …static_assert(std::is_same_v<decltype(que)::container_type, std::list<long, test_allocator<long>>>… in main() 67 static_assert(std::is_same_v<decltype(que)::container_type, std::deque<A>>, ""); in main()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | conversion-function.cpp | 379 typedef Container<int> container_type; typedef 384 typedef typename Iterator<T>::container_type X;
|
| /llvm-project-15.0.7/libcxx/test/std/containers/container.adaptors/stack/stack.cons/ |
| H A D | deduct.pass.cpp | 52 …static_assert(std::is_same_v<decltype(stk)::container_type, std::list<long, test_allocator<long>>>… in main() 71 static_assert(std::is_same_v<decltype(stk)::container_type, std::deque<A>>, ""); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iterator/ |
| H A D | types.pass.cpp | 52 static_assert((std::is_same<typename R::container_type, C>::value), ""); in test()
|