Home
last modified time | relevance | path

Searched refs:container_type (Results 1 – 25 of 36) sorted by relevance

12

/llvm-project-15.0.7/libcxx/include/
H A Dqueue25 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 Dstack23 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 Dctor_comp_alloc.pass.cpp25 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 Dctor_alloc.pass.cpp25 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 Dctor_comp_cont_alloc.pass.cpp36 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 Dctor_comp_rcont_alloc.pass.cpp36 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 Dctor_move_alloc.pass.cpp40 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 Dctor_copy_alloc.pass.cpp35 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 Dctor_rcontainer_alloc.pass.cpp42 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 Dctor_rqueue_alloc.pass.cpp42 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 Dctor_queue_alloc.pass.cpp38 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 Dctor_alloc.pass.cpp26 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 Dctor_container_alloc.pass.cpp39 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 Dctor_rcontainer_alloc.pass.cpp42 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 Dctor_rqueue_alloc.pass.cpp42 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 Dctor_copy_alloc.pass.cpp38 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 Dctor_alloc.pass.cpp26 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 Dctor_container_alloc.pass.cpp39 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 Dtypes.pass.cpp51 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 Dtypes.pass.cpp50 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 Dtypes.pass.cpp57 …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 Ddeduct.pass.cpp49 …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 Dconversion-function.cpp379 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 Ddeduct.pass.cpp52 …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 Dtypes.pass.cpp52 static_assert((std::is_same<typename R::container_type, C>::value), ""); in test()

12