Home
last modified time | relevance | path

Searched refs:_Base (Results 1 – 10 of 10) sorted by relevance

/haiku/headers/cpp/std/
H A Dvalarray_meta.h71 typedef _UnFunBase<_Dom> _Base;
72 typedef typename _Base::value_type value_type;
75 : _Base (__e, __f) {}
80 typedef _UnFunBase<valarray<_Tp> > _Base;
81 typedef typename _Base::value_type value_type;
84 : _Base (__v, __f) {}
151 typedef _BinFunBase<_Dom1,_Dom2> _Base;
152 typedef typename _Base::value_type value_type;
157 : _Base (__e1, __e2, __f) {}
163 typedef _BinFunBase<valarray<_Tp>, valarray<_Tp> > _Base;
[all …]
/haiku/headers/cpp/
H A Dstl_bvector.h311 _Base; typedef
313 typedef typename _Base::allocator_type allocator_type;
315 _Bvector_base(const allocator_type& __a) : _Base(__a) {} in _Bvector_base()
316 ~_Bvector_base() { _Base::_M_deallocate(); } in ~_Bvector_base()
375 typedef _Bvector_base<_Alloc> _Base; typedef
377 typedef _Bvector_base<__STL_DEFAULT_ALLOCATOR(bool) > _Base;
401 typedef typename _Base::allocator_type allocator_type;
402 allocator_type get_allocator() const { return _Base::get_allocator(); } in get_allocator()
406 using _Base::_M_bit_alloc;
407 using _Base::_M_deallocate;
[all …]
H A Dstl_vector.h107 _Base; typedef
108 typedef typename _Base::allocator_type allocator_type;
110 _Vector_base(const allocator_type& __a) : _Base(__a) {} in _Vector_base()
111 _Vector_base(size_t __n, const allocator_type& __a) : _Base(__a) { in _Vector_base()
158 typedef _Vector_base<_Tp, _Alloc> _Base; typedef
170 typedef typename _Base::allocator_type allocator_type;
171 allocator_type get_allocator() const { return _Base::get_allocator(); } in get_allocator()
185 using _Base::_M_allocate;
186 using _Base::_M_deallocate;
187 using _Base::_M_start;
[all …]
H A Dstl_list.h183 _Base; typedef
184 typedef typename _Base::allocator_type allocator_type;
186 _List_base(const allocator_type& __a) : _Base(__a) { in _List_base()
248 typedef _List_base<_Tp, _Alloc> _Base; typedef
262 typedef typename _Base::allocator_type allocator_type;
263 allocator_type get_allocator() const { return _Base::get_allocator(); } in get_allocator()
283 using _Base::_M_node;
284 using _Base::_M_put_node;
285 using _Base::_M_get_node;
310 explicit list(const allocator_type& __a = allocator_type()) : _Base(__a) {} in _Base() function
[all …]
H A Dstl_slist.h232 _Base; typedef
233 typedef typename _Base::allocator_type allocator_type;
235 _Slist_base(const allocator_type& __a) : _Base(__a) { _M_head._M_next = 0; } in _Slist_base()
303 typedef _Slist_base<_Tp,_Alloc> _Base; typedef
316 typedef typename _Base::allocator_type allocator_type;
317 allocator_type get_allocator() const { return _Base::get_allocator(); } in get_allocator()
346 using _Base::_M_get_node;
347 using _Base::_M_put_node;
348 using _Base::_M_erase_after;
349 using _Base::_M_head;
[all …]
H A Dbitset538 typedef _Base_bitset<__BITSET_WORDS(_Nb,_WordT), _WordT> _Base;
542 using _Base::_S_whichword;
543 using _Base::_S_whichbyte;
544 using _Base::_S_whichbit;
545 using _Base::_S_maskbit;
546 using _Base::_M_getword;
547 using _Base::_M_hiword;
548 using _Base::_M_do_and;
549 using _Base::_M_do_or;
550 using _Base::_M_do_xor;
[all …]
H A Dstl_deque.h342 _Base; typedef
343 typedef typename _Base::allocator_type allocator_type;
348 : _Base(__a), _M_start(), _M_finish() in _Deque_base()
351 : _Base(__a), _M_start(), _M_finish() {} in _Deque_base()
481 typedef _Deque_base<_Tp, _Alloc, __bufsiz> _Base; typedef
491 typedef typename _Base::allocator_type allocator_type;
492 allocator_type get_allocator() const { return _Base::get_allocator(); } in get_allocator()
495 typedef typename _Base::iterator iterator;
496 typedef typename _Base::const_iterator const_iterator;
516 using _Base::_M_initialize_map;
[all …]
H A Dstl_tree.h487 _Base; typedef
488 typedef typename _Base::allocator_type allocator_type;
491 : _Base(__a) { _M_header = _M_get_node(); } in _Rb_tree_base()
524 typedef _Rb_tree_base<_Value, _Alloc> _Base; typedef
540 typedef typename _Base::allocator_type allocator_type;
541 allocator_type get_allocator() const { return _Base::get_allocator(); } in get_allocator()
545 using _Base::_M_get_node;
546 using _Base::_M_put_node;
547 using _Base::_M_header;
645 : _Base(allocator_type()), _M_node_count(0), _M_key_compare() in _Rb_tree()
[all …]
H A Dstl_rope.h338 _Base; typedef
339 typedef typename _Base::allocator_type allocator_type;
341 : _Base(__size, __a) {} in _Rope_rep_base()
1228 _Base; typedef
1229 typedef typename _Base::allocator_type allocator_type;
1230 _Rope_base(_RopeRep* __t, const allocator_type& __a) : _Base(__t, __a) {} in _Rope_base()
1231 _Rope_base(const allocator_type& __a) : _Base(__a) {} in _Rope_base()
1284 typedef _Rope_base<_CharT,_Alloc> _Base;
1285 typedef typename _Base::allocator_type allocator_type;
1287 using _Base::_M_tree_ptr;
[all …]
H A Dropeimpl.h1373 : _Base(__a) in rope()