Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/
H A Dstack23 typedef Container container_type;
24 typedef typename container_type::value_type value_type;
25 typedef typename container_type::reference reference;
26 typedef typename container_type::const_reference const_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);
47 template <class Alloc> stack(const container_type& c, const Alloc& a);
48 template <class Alloc> stack(container_type&& c, const Alloc& a);
[all …]
H A Dqueue23 typedef Container container_type;
24 typedef typename container_type::value_type value_type;
25 typedef typename container_type::reference reference;
26 typedef typename container_type::const_reference const_reference;
27 typedef typename container_type::size_type size_type;
30 container_type c;
42 explicit queue(const container_type& c);
43 explicit queue(container_type&& c)
50 queue(const container_type& c, const Alloc& a);
52 queue(container_type&& c, const Alloc& a);
[all …]
H A Diterator320 typedef Container container_type;
343 typedef Container container_type;
367 typedef Container container_type;
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dqueue23 typedef Container container_type;
24 typedef typename container_type::value_type value_type;
25 typedef typename container_type::reference reference;
26 typedef typename container_type::const_reference const_reference;
27 typedef typename container_type::size_type size_type;
30 container_type c;
42 explicit queue(const container_type& c);
43 explicit queue(container_type&& c)
50 queue(const container_type& c, const Alloc& a);
52 queue(container_type&& c, const Alloc& a);
[all …]
H A Dstack23 typedef Container container_type;
24 typedef typename container_type::value_type value_type;
25 typedef typename container_type::reference reference;
26 typedef typename container_type::const_reference const_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);
47 template <class Alloc> stack(const container_type& c, const Alloc& a);
48 template <class Alloc> stack(container_type&& c, const Alloc& a);
[all …]
H A Diterator320 typedef Container container_type;
343 typedef Container container_type;
367 typedef Container container_type;
/freebsd/contrib/llvm-project/libcxx/include/__flat_set/
H A Dflat_multiset.h107 using container_type = _KeyContainer; variable
139 …_LIBCPP_HIDE_FROM_ABI explicit flat_multiset(container_type __keys, const key_compare& __comp = ke…
145 …flat_multiset(sorted_equivalent_t, container_type __keys, const key_compare& __comp = key_compare(…
183 requires uses_allocator<container_type, _Allocator>::value
185 : __keys_(std::make_obj_using_allocator<container_type>(__alloc)), __compare_() {} in flat_multiset()
188 requires uses_allocator<container_type, _Allocator>::value
190 : __keys_(std::make_obj_using_allocator<container_type>(__alloc)), __compare_(__comp) {} in flat_multiset()
193 requires uses_allocator<container_type, _Allocator>::value
194 _LIBCPP_HIDE_FROM_ABI flat_multiset(const container_type& __keys, const _Allocator& __alloc) in flat_multiset()
195 : __keys_(std::make_obj_using_allocator<container_type>(__alloc, __keys)), __compare_() { in flat_multiset()
[all …]
H A Dflat_set.h106 using container_type = _KeyContainer; variable
137 …_LIBCPP_CONSTEXPR_SINCE_CXX26 explicit flat_set(container_type __keys, const key_compare& __comp =…
143 flat_set(sorted_unique_t, container_type __keys, const key_compare& __comp = key_compare())
185 requires uses_allocator<container_type, _Allocator>::value
187 : __keys_(std::make_obj_using_allocator<container_type>(__alloc)), __compare_() {} in flat_set()
190 requires uses_allocator<container_type, _Allocator>::value
192 : __keys_(std::make_obj_using_allocator<container_type>(__alloc)), __compare_(__comp) {} in flat_set()
195 requires uses_allocator<container_type, _Allocator>::value
196 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 flat_set(const container_type& __keys, const _… in flat_set()
197 : __keys_(std::make_obj_using_allocator<container_type>(__alloc, __keys)), __compare_() { in flat_set()
[all …]
H A Dutils.h43 using _KeyContainer = typename decay_t<_Set>::container_type; in __emplace_exact_pos()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DGeneric.cpp15 auto container_type = container.GetCompilerType().GetNonReferenceType(); in GetDesugaredSmartPointerValue() local
16 if (!container_type) in GetDesugaredSmartPointerValue()
19 auto arg = container_type.GetTypeTemplateArgument(0); in GetDesugaredSmartPointerValue()
/freebsd/usr.sbin/moused/moused/
H A Dutil-list.h156 #define list_first_entry_by_type(head, container_type, member) \ argument
157 container_of((head)->next, container_type, member)
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__iterator/
H A Dfront_insert_iterator.h43 typedef _Container container_type; typedef
H A Dback_insert_iterator.h43 typedef _Container container_type; typedef
H A Dinsert_iterator.h47 typedef _Container container_type; typedef
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dfront_insert_iterator.h51 typedef _Container container_type; typedef
H A Dback_insert_iterator.h51 typedef _Container container_type; typedef
H A Dinsert_iterator.h61 typedef _Container container_type; typedef
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dcontainer_adaptor.h40 …ybe_const_container _LIBCPP_NODEBUG = __fmt_maybe_const<typename _Adaptor::container_type, _CharT>;