HomeSort by relevance Sort by last modified time
    Searched defs:allocator_type (Results 51 - 75 of 88) sorted by null

1 23 4

  /external/stlport/stlport/stl/pointers/
_set.h 70 typedef typename _Alloc_traits<_KeyStorageType, _Alloc>::allocator_type _StorageTypeAlloc;
110 typedef typename _Priv_Rep_type::allocator_type allocator_type; typedef in class:set
131 const allocator_type& __a = allocator_type())
160 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
177 const _Compare& __comp, const allocator_type& __a = allocator_type())
188 const _Compare& __comp, const allocator_type& __a = allocator_type())
357 typedef typename _Priv_Rep_type::allocator_type allocator_type; typedef in class:multiset
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_alloc.h 186 * Container::allocator_type won't be different */
201 typedef typename _Rebind_type::other allocator_type; typedef in struct:_Alloc_traits
202 static allocator_type create_allocator(const _Orig& __a)
203 { return allocator_type(_STLP_CONVERT_ALLOCATOR(__a, _Tp)); }
207 typedef _Allocator allocator_type; typedef in struct:_Alloc_traits
444 typedef allocator<_Tp> allocator_type; typedef in struct:_Alloc_traits
445 static allocator_type create_allocator(const allocator<_Tp1 >& __a)
446 { return allocator_type(_STLP_CONVERT_ALLOCATOR(__a, _Tp)); }
452 inline _STLP_TYPENAME_ON_RETURN_TYPE _Alloc_traits<_Tp, _Alloc>::allocator_type _STLP_CALL
_string_sum.h 93 typedef typename _BString::allocator_type allocator_type; typedef in class:__bstr_sum
102 allocator_type get_allocator() const { return _M_get_storage(false).get_allocator(); }
_hashtable.h 259 typedef typename _Alloc_traits<_BucketType*, _All>::allocator_type _BucketAllocType;
299 typedef _All allocator_type; typedef in class:hashtable
300 allocator_type get_allocator() const { return _M_elems.get_allocator(); }
306 const allocator_type& __a = allocator_type())
313 _M_elems(allocator_type()),
322 const allocator_type& __a)
_list.h 180 typedef typename _Alloc_traits<_Node, _Alloc>::allocator_type _Node_allocator_type;
183 typedef _Alloc allocator_type; typedef in class:_List_base
185 allocator_type get_allocator() const
188 _List_base(const allocator_type& __a) : _M_node(_STLP_CONVERT_ALLOCATOR(__a, _Node), _Node_base())
271 typedef typename _Base::allocator_type allocator_type; typedef in class:list
307 const allocator_type& __a = allocator_type())
310 : _STLP_PRIV _List_base<_Tp, _Alloc>(allocator_type())
313 : _STLP_PRIV _List_base<_Tp, _Alloc>(allocator_type())
    [all...]
_slist.h 151 typedef typename _Alloc_traits<_Node,_Alloc>::allocator_type _M_node_allocator_type;
158 typedef _Alloc allocator_type; typedef in class:_Slist_base
160 _Slist_base(const allocator_type& __a) :
184 allocator_type get_allocator() const
243 typedef typename _Base::allocator_type allocator_type; typedef in class:slist
277 allocator_type get_allocator() const { return _Base::get_allocator(); }
280 explicit slist(const allocator_type& __a = allocator_type())
283 : _STLP_PRIV _Slist_base<_Tp,_Alloc>(allocator_type()) {}
    [all...]
_string.h 152 typedef typename _Base::allocator_type allocator_type; typedef in class:basic_string
154 allocator_type get_allocator() const
155 { return _STLP_CONVERT_ALLOCATOR((const allocator_type&)this->_M_start_of_storage, _CharT); }
158 explicit basic_string(const allocator_type& __a = allocator_type())
161 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type(), _Base::_DEFAULT_SIZE)
163 explicit basic_string(const allocator_type& __a)
170 const allocator_type& __a = allocator_type())
    [all...]
_tree.h 237 typedef _Alloc allocator_type; typedef in class:_Rb_tree_base
240 typedef typename _Alloc_traits<_Node, _Alloc>::allocator_type _M_node_allocator_type;
244 allocator_type get_allocator() const {
249 _Rb_tree_base(const allocator_type& __a) :
310 typedef typename _Base::allocator_type allocator_type; typedef in class:_Rb_tree
383 : _Rb_tree_base<_Value, _Alloc>(allocator_type()), _M_node_count(0), _M_key_compare(_Compare())
387 : _Rb_tree_base<_Value, _Alloc>(allocator_type()), _M_node_count(0), _M_key_compare(__comp)
390 _Rb_tree(const _Compare& __comp, const allocator_type& __a)
_vector.h 62 typedef _Alloc allocator_type; typedef in class:_Vector_base
64 typedef _STLP_alloc_proxy<pointer, _Tp, allocator_type> _AllocProxy;
119 typedef typename _Base::allocator_type allocator_type; typedef in class:vector
135 allocator_type get_allocator() const
136 { return _STLP_CONVERT_ALLOCATOR((const allocator_type&)this->_M_end_of_storage, _Tp); }
195 typename allocator_type::size_type __alloc_max_size = this->_M_end_of_storage.max_size();
214 explicit vector(const allocator_type& __a = allocator_type())
217 : _STLP_PRIV _Vector_base<_Tp, _Alloc>(allocator_type()) {}
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_deque.h 103 typedef typename _Alloc_traits<_StorageType, _Alloc>::allocator_type _StorageTypeAlloc;
120 typedef typename _Alloc_traits<value_type, _Alloc>::allocator_type allocator_type; typedef in class:deque
157 allocator_type get_allocator() const { return _STLP_CONVERT_ALLOCATOR(_M_impl.get_allocator(), value_type); }
159 explicit deque(const allocator_type& __a = allocator_type())
169 const allocator_type& __a = allocator_type())
179 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
203 const allocator_type& __a = allocator_type()
    [all...]
_set.h 70 typedef typename _Alloc_traits<_KeyStorageType, _Alloc>::allocator_type _StorageTypeAlloc;
110 typedef typename _Priv_Rep_type::allocator_type allocator_type; typedef in class:set
131 const allocator_type& __a = allocator_type())
160 const allocator_type& __a _STLP_ALLOCATOR_TYPE_DFL)
177 const _Compare& __comp, const allocator_type& __a = allocator_type())
188 const _Compare& __comp, const allocator_type& __a = allocator_type())
357 typedef typename _Priv_Rep_type::allocator_type allocator_type; typedef in class:multiset
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_vector.h 90 typedef _Alloc allocator_type; typedef in struct:_Vector_base
100 allocator_type
102 { return allocator_type(_M_get_Tp_allocator()); }
107 _Vector_base(const allocator_type& __a)
110 _Vector_base(size_t __n, const allocator_type& __a)
193 typedef _Alloc allocator_type; typedef in class:vector
215 vector(const allocator_type& __a)
228 const allocator_type& __a = allocator_type())
272 const allocator_type& __a = allocator_type()
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/
assoc_container.hpp 68 typedef Allocator allocator_type; typedef in class:__gnu_pbds::container_base
69 typedef typename allocator_type::size_type size_type;
70 typedef typename allocator_type::difference_type difference_type;
73 typedef typename allocator_type::template rebind<Key>::other::value_type key_type;
74 typedef typename allocator_type::template rebind<key_type>::other key_rebind;
82 typedef typename allocator_type::template rebind<mapped_type>::other mapped_rebind;
90 typedef typename allocator_type::template rebind<value_type>::other value_rebind;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 164 typedef Allocator allocator_type; typedef in class:__gnu_pbds::detail::PB_DS_CLASS_NAME
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 165 typedef Allocator allocator_type; typedef in class:__gnu_pbds::detail::PB_DS_CLASS_NAME
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 155 typedef Allocator allocator_type; typedef in class:__gnu_pbds::detail::PB_DS_OV_TREE_CLASS_NAME
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 161 typedef Allocator allocator_type; typedef in class:__gnu_pbds::detail::PB_DS_CLASS_NAME
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
rc_string_base.h 87 typedef _Alloc allocator_type; typedef in class:__rc_string_base
318 allocator_type&
322 const allocator_type&
601 std::__alloc_swap<allocator_type>::_S_do_it(_M_get_allocator(),
  /external/stlport/stlport/stl/
_hashtable.h 259 typedef typename _Alloc_traits<_BucketType*, _All>::allocator_type _BucketAllocType;
299 typedef _All allocator_type; typedef in class:hashtable
300 allocator_type get_allocator() const { return _M_elems.get_allocator(); }
306 const allocator_type& __a = allocator_type())
313 _M_elems(allocator_type()),
322 const allocator_type& __a)
_list.h 180 typedef typename _Alloc_traits<_Node, _Alloc>::allocator_type _Node_allocator_type;
183 typedef _Alloc allocator_type; typedef in class:_List_base
185 allocator_type get_allocator() const
188 _List_base(const allocator_type& __a) : _M_node(_STLP_CONVERT_ALLOCATOR(__a, _Node), _Node_base())
271 typedef typename _Base::allocator_type allocator_type; typedef in class:list
307 const allocator_type& __a = allocator_type())
310 : _STLP_PRIV _List_base<_Tp, _Alloc>(allocator_type())
313 : _STLP_PRIV _List_base<_Tp, _Alloc>(allocator_type())
    [all...]
_slist.h 151 typedef typename _Alloc_traits<_Node,_Alloc>::allocator_type _M_node_allocator_type;
158 typedef _Alloc allocator_type; typedef in class:_Slist_base
160 _Slist_base(const allocator_type& __a) :
184 allocator_type get_allocator() const
243 typedef typename _Base::allocator_type allocator_type; typedef in class:slist
277 allocator_type get_allocator() const { return _Base::get_allocator(); }
280 explicit slist(const allocator_type& __a = allocator_type())
283 : _STLP_PRIV _Slist_base<_Tp,_Alloc>(allocator_type()) {}
    [all...]
_string.h 152 typedef typename _Base::allocator_type allocator_type; typedef in class:basic_string
154 allocator_type get_allocator() const
155 { return _STLP_CONVERT_ALLOCATOR((const allocator_type&)this->_M_start_of_storage, _CharT); }
158 explicit basic_string(const allocator_type& __a = allocator_type())
161 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type(), _Base::_DEFAULT_SIZE)
163 explicit basic_string(const allocator_type& __a)
170 const allocator_type& __a = allocator_type())
    [all...]
_tree.h 237 typedef _Alloc allocator_type; typedef in class:_Rb_tree_base
240 typedef typename _Alloc_traits<_Node, _Alloc>::allocator_type _M_node_allocator_type;
244 allocator_type get_allocator() const {
249 _Rb_tree_base(const allocator_type& __a) :
310 typedef typename _Base::allocator_type allocator_type; typedef in class:_Rb_tree
383 : _Rb_tree_base<_Value, _Alloc>(allocator_type()), _M_node_count(0), _M_key_compare(_Compare())
387 : _Rb_tree_base<_Value, _Alloc>(allocator_type()), _M_node_count(0), _M_key_compare(__comp)
390 _Rb_tree(const _Compare& __comp, const allocator_type& __a)
_vector.h 62 typedef _Alloc allocator_type; typedef in class:_Vector_base
64 typedef _STLP_alloc_proxy<pointer, _Tp, allocator_type> _AllocProxy;
119 typedef typename _Base::allocator_type allocator_type; typedef in class:vector
135 allocator_type get_allocator() const
136 { return _STLP_CONVERT_ALLOCATOR((const allocator_type&)this->_M_end_of_storage, _Tp); }
195 typename allocator_type::size_type __alloc_max_size = this->_M_end_of_storage.max_size();
214 explicit vector(const allocator_type& __a = allocator_type())
217 : _STLP_PRIV _Vector_base<_Tp, _Alloc>(allocator_type()) {}
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
hashtable.h 277 typedef typename _Alloc::template rebind<value_type>::other allocator_type; typedef in class:hashtable
278 allocator_type
322 const allocator_type& __a = allocator_type())
329 const allocator_type& __a = allocator_type())
    [all...]

Completed in 754 milliseconds

1 23 4