Home
last modified time | relevance | path

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

12

/external/libcxx/include/
Dqueue24 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 …]
Dstack24 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/dbus/tools/
Ddbus-send.c412 int container_type; in main() local
428 container_type = DBUS_TYPE_INVALID; in main()
431 container_type = DBUS_TYPE_VARIANT; in main()
433 container_type = DBUS_TYPE_ARRAY; in main()
435 container_type = DBUS_TYPE_DICT_ENTRY; in main()
437 if (container_type != DBUS_TYPE_INVALID) in main()
454 if (container_type == DBUS_TYPE_DICT_ENTRY) in main()
477 else if (container_type != DBUS_TYPE_INVALID) in main()
483 container_type, in main()
491 if (container_type == DBUS_TYPE_ARRAY) in main()
[all …]
/external/libcxx/test/std/containers/container.adaptors/queue/queue.cons.alloc/
Dctor_rcontainer_alloc.pass.cpp41 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()
Dctor_rqueue_alloc.pass.cpp41 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()
Dctor_queue_alloc.pass.cpp38 typedef typename base::container_type container_type; typedef
41 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test()
Dctor_alloc.pass.cpp26 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()
Dctor_container_alloc.pass.cpp38 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()
/external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
Dctor_comp_alloc.pass.cpp25 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()
Dctor_alloc.pass.cpp25 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()
Dctor_comp_cont_alloc.pass.cpp36 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()
Dctor_comp_rcont_alloc.pass.cpp36 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()
Dctor_move_alloc.pass.cpp39 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()
Dctor_copy_alloc.pass.cpp35 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/stack/stack.cons.alloc/
Dctor_rcontainer_alloc.pass.cpp41 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()
Dctor_rqueue_alloc.pass.cpp41 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()
Dctor_copy_alloc.pass.cpp38 typedef typename base::container_type container_type; typedef
41 test(const container_type& c, const allocator_type& a) : base(c, a) {} in test()
Dctor_alloc.pass.cpp26 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()
Dctor_container_alloc.pass.cpp38 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()
/external/dbus/dbus/
Ddbus-marshal-recursive.c1502 writer->container_type = DBUS_TYPE_INVALID; in _dbus_type_writer_init()
1634 int container_type, in writer_recurse_init_and_check() argument
1644 sub->container_type = container_type; in writer_recurse_init_and_check()
1647 (sub->container_type == DBUS_TYPE_ARRAY || sub->container_type == DBUS_TYPE_VARIANT)) in writer_recurse_init_and_check()
1661 if (expected != sub->container_type) in writer_recurse_init_and_check()
1666 _dbus_type_to_string (sub->container_type), in writer_recurse_init_and_check()
1672 _dbus_type_to_string (sub->container_type), in writer_recurse_init_and_check()
1683 _dbus_type_to_string (writer->container_type), in writer_recurse_init_and_check()
1691 _dbus_type_to_string (sub->container_type), in writer_recurse_init_and_check()
1748 if (writer->container_type != DBUS_TYPE_ARRAY) in write_or_verify_typecode()
[all …]
Ddbus-marshal-recursive.h68 dbus_uint32_t container_type : 8; /**< what are we inside? (e.g. struct, variant, array) */ member
167 int container_type,
/external/libcxx/test/std/containers/container.adaptors/stack/stack.defn/
Dtypes.pass.cpp50 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()
/external/libcxx/test/std/containers/container.adaptors/queue/queue.defn/
Dtypes.pass.cpp49 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()
/external/libcxx/test/std/containers/container.adaptors/priority.queue/
Dtypes.pass.cpp51 …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()
/external/parameter-framework/asio-1.10.6/include/asio/
Dbuffer.hpp742 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()

12