/external/libcxx/include/ |
D | queue | 24 typedef Container container_type; 25 typedef typename container_type::value_type value_type; 26 typedef typename container_type::reference reference; 27 typedef typename container_type::const_reference const_reference; 28 typedef typename container_type::size_type size_type; 31 container_type c; 43 explicit queue(const container_type& c); 44 explicit queue(container_type&& c) 48 queue(const container_type& c, const Alloc& a); 50 queue(container_type&& c, const Alloc& a); [all …]
|
D | stack | 24 typedef Container container_type; 25 typedef typename container_type::value_type value_type; 26 typedef typename container_type::reference reference; 27 typedef typename container_type::const_reference const_reference; 28 typedef typename container_type::size_type size_type; 31 container_type c; 43 explicit stack(const container_type& c); 44 explicit stack(container_type&& c); 46 template <class Alloc> stack(const container_type& c, const Alloc& a); 47 template <class Alloc> stack(container_type&& c, const Alloc& a); [all …]
|
/external/libcxx/test/std/containers/container.adaptors/stack/stack.cons.alloc/ |
D | ctor_rcontainer_alloc.pass.cpp | 42 typedef typename base::container_type container_type; typedef 45 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() 46 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} in test()
|
D | ctor_rqueue_alloc.pass.cpp | 42 typedef typename base::container_type container_type; typedef 45 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() 46 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} in test()
|
D | ctor_copy_alloc.pass.cpp | 38 typedef typename base::container_type container_type; typedef 41 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test()
|
D | ctor_alloc.pass.cpp | 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()
|
D | ctor_container_alloc.pass.cpp | 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()
|
/external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
D | ctor_comp_alloc.pass.cpp | 26 typedef typename base::container_type container_type; typedef 32 test(const value_compare& comp, const container_type& c, in test() 35 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_alloc.pass.cpp | 26 typedef typename base::container_type container_type; typedef 32 test(const value_compare& comp, const container_type& c, in test() 35 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_comp_rcont_alloc.pass.cpp | 37 typedef typename base::container_type container_type; typedef 43 test(const value_compare& comp, const container_type& c, in test() 46 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_comp_cont_alloc.pass.cpp | 37 typedef typename base::container_type container_type; typedef 43 test(const value_compare& comp, const container_type& c, in test() 46 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_move_alloc.pass.cpp | 40 typedef typename base::container_type container_type; typedef 46 test(const value_compare& comp, const container_type& c, in test() 48 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_copy_alloc.pass.cpp | 35 typedef typename base::container_type container_type; typedef 41 test(const value_compare& comp, const container_type& c, in test()
|
/external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/ |
D | ctor_rcontainer_alloc.pass.cpp | 42 typedef typename base::container_type container_type; typedef 45 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() 46 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} in test()
|
D | ctor_rqueue_alloc.pass.cpp | 42 typedef typename base::container_type container_type; typedef 45 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() 46 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} in test()
|
D | ctor_queue_alloc.pass.cpp | 38 typedef typename base::container_type container_type; typedef 41 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test()
|
D | ctor_alloc.pass.cpp | 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()
|
D | ctor_container_alloc.pass.cpp | 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()
|
/external/libcxx/test/std/containers/container.adaptors/stack/stack.cons/ |
D | deduct.pass.cpp | 55 …static_assert(std::is_same_v<decltype(stk)::container_type, std::list<long, test_allocator<long>>>… in main() 74 static_assert(std::is_same_v<decltype(stk)::container_type, std::deque<A>>, ""); in main() 89 static_assert(std::is_same_v<decltype(stk)::container_type, C>, ""); in main()
|
/external/libcxx/test/std/containers/container.adaptors/queue/queue.cons/ |
D | deduct.pass.cpp | 53 …static_assert(std::is_same_v<decltype(que)::container_type, std::list<long, test_allocator<long>>>… in main() 71 static_assert(std::is_same_v<decltype(que)::container_type, std::deque<A>>, ""); in main() 86 static_assert(std::is_same_v<decltype(que)::container_type, C>, ""); in main()
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
D | buffer.hpp | 742 typedef mutable_buffers_1 container_type; typedef 749 typedef const_buffers_1 container_type; typedef 761 inline typename detail::buffer_types<PodType>::container_type 766 typedef typename asio::detail::buffer_types<PodType>::container_type in buffer() 767 container_type; in buffer() typedef 768 return container_type( in buffer() 773 inline typename detail::buffer_types<PodType>::container_type 778 typedef typename asio::detail::buffer_types<PodType>::container_type in buffer() 779 container_type; in buffer() typedef 780 return container_type( in buffer()
|
/external/libcxx/test/std/containers/container.adaptors/stack/stack.defn/ |
D | types.pass.cpp | 50 static_assert(( std::is_same<std::stack<int>::container_type, std::deque<int> >::value), ""); in main() 51 …static_assert(( std::is_same<std::stack<int, std::vector<int> >::container_type, std::vector<int> … in main()
|
/external/libcxx/test/std/containers/container.adaptors/queue/queue.defn/ |
D | types.pass.cpp | 49 static_assert(( std::is_same<std::queue<int>::container_type, std::deque<int> >::value), ""); in main() 50 …static_assert(( std::is_same<std::queue<int, std::vector<int> >::container_type, std::vector<int> … in main()
|
/external/mesa3d/src/gallium/winsys/amdgpu/drm/ |
D | amdgpu_cs.h | 204 #define get_container(member_ptr, container_type, container_member) \ argument 205 (container_type *)((char *)(member_ptr) - offsetof(container_type, container_member))
|
/external/libcxx/test/std/containers/container.adaptors/priority.queue/ |
D | types.pass.cpp | 56 …static_assert(( std::is_same<std::priority_queue<int>::container_type, std::vector<int> >::value),… in main() 57 …static_assert(( std::is_same<std::priority_queue<int, std::deque<int> >::container_type, std::dequ… in main()
|