/ndk/sources/cxx-stl/llvm-libc++/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 …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ |
D | ctor_comp_alloc.pass.cpp | 25 typedef typename base::container_type container_type; typedef 31 test(const value_compare& comp, const container_type& c, in test() 34 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_alloc.pass.cpp | 25 typedef typename base::container_type container_type; typedef 31 test(const value_compare& comp, const container_type& c, in test() 34 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_comp_cont_alloc.pass.cpp | 36 typedef typename base::container_type container_type; typedef 42 test(const value_compare& comp, const container_type& c, in test() 45 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_comp_rcont_alloc.pass.cpp | 36 typedef typename base::container_type container_type; typedef 42 test(const value_compare& comp, const container_type& c, in test() 45 test(const value_compare& comp, container_type&& c, in test()
|
D | ctor_move_alloc.pass.cpp | 39 typedef typename base::container_type container_type; typedef 45 test(const value_compare& comp, const container_type& c, in test() 47 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()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/ |
D | ctor_rcontainer_alloc.pass.cpp | 41 typedef typename base::container_type container_type; typedef 44 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() 45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} in test()
|
D | ctor_rqueue_alloc.pass.cpp | 41 typedef typename base::container_type container_type; typedef 44 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() 45 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 | 26 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() 28 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test()
|
D | ctor_container_alloc.pass.cpp | 38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() 40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/ |
D | ctor_rcontainer_alloc.pass.cpp | 41 typedef typename base::container_type container_type; typedef 44 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() 45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {} in test()
|
D | ctor_rqueue_alloc.pass.cpp | 41 typedef typename base::container_type container_type; typedef 44 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test() 45 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 | 26 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() 28 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test()
|
D | ctor_container_alloc.pass.cpp | 38 test(const container_type& c, const test_allocator<int>& a) : base(c, a) {} in test() 40 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {} in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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<double, std::vector<int> >::container_type, std::vector<int… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/ |
D | types.pass.cpp | 51 …static_assert((std::is_same<std::priority_queue<int>::container_type, std::vector<int> >::value), … in main() 52 …static_assert((std::is_same<std::priority_queue<double, std::deque<int> >::container_type, std::de… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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<double, std::vector<int> >::container_type, std::vector<int… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iterator/ |
D | types.pass.cpp | 49 static_assert((std::is_same<typename R::container_type, C>::value), ""); in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/back.insert.iterator/ |
D | types.pass.cpp | 48 static_assert((std::is_same<typename R::container_type, C>::value), ""); in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/insert.iterators/insert.iterator/ |
D | types.pass.cpp | 53 static_assert((std::is_same<typename R::container_type, C>::value), ""); in test()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _iterator.h | 168 typedef _Container container_type; typedef 198 typedef _Container container_type; typedef 228 typedef _Container container_type; typedef
|