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

/haiku/headers/cpp/std/
H A Dvalarray_meta.h71 typedef _UnFunBase<_Dom> _Base; typedef in struct:_UnFunClos
72 typedef typename _Base::value_type value_type;
75 : _Base (__e, __f) {}
80 typedef _UnFunBase<valarray<_Tp> > _Base; typedef in struct:_UnFunClos
81 typedef typename _Base::value_type value_type;
84 : _Base (__v, __f) {}
151 typedef _BinFunBase<_Dom1,_Dom2> _Base; typedef in struct:_BinFunClos
152 typedef typename _Base::value_type value_type;
157 : _Base (__e1, __e2, __f) {}
163 typedef _BinFunBase<valarray<_Tp>, valarray<_Tp> > _Base; typedef in struct:_BinFunClos
175 typedef _BinFunBase<_Dom,valarray<_Tp> > _Base; typedef in struct:_BinFunClos
187 typedef _BinFunBase<_Dom,valarray<_Tp> > _Base; typedef in struct:_BinFunClos
200 typedef _BinFunBase2<_Dom> _Base; typedef in struct:_BinFunClos
211 typedef _BinFunBase1<_Dom> _Base; typedef in struct:_BinFunClos
220 typedef _BinFunBase2<valarray<_Tp> > _Base; typedef in struct:_BinFunClos
231 typedef _BinFunBase1<valarray<_Tp> > _Base; typedef in struct:_BinFunClos
262 typedef _FunBase<_Dom, typename _Dom::value_type> _Base; typedef in struct:_ValFunClos
272 typedef _FunBase<valarray<_Tp>, _Tp> _Base; typedef in struct:_ValFunClos
282 typedef _FunBase<_Dom, const typename _Dom::value_type&> _Base; typedef in struct:_RefFunClos
293 typedef _FunBase<valarray<_Tp>, const _Tp&> _Base; typedef in struct:_RefFunClos
326 typedef _UnBase<_Oper, _Dom> _Base; typedef in struct:_UnClos
335 typedef _UnBase<_Oper, valarray<_Tp> > _Base; typedef in struct:_UnClos
418 typedef _BinBase<_Oper,_Dom1,_Dom2> _Base; typedef in struct:_BinClos
427 typedef _BinBase<_Oper,valarray<_Tp>,valarray<_Tp> > _Base; typedef in struct:_BinClos
438 typedef _BinBase<_Oper,_Dom,valarray<_Tp> > _Base; typedef in struct:_BinClos
449 typedef _BinBase<_Oper,valarray<_Tp>,_Dom> _Base; typedef in struct:_BinClos
460 typedef _BinBase2<_Oper,_Dom> _Base; typedef in struct:_BinClos
470 typedef _BinBase1<_Oper,_Dom> _Base; typedef in struct:_BinClos
479 typedef _BinBase2<_Oper,valarray<_Tp> > _Base; typedef in struct:_BinClos
489 typedef _BinBase1<_Oper,valarray<_Tp> > _Base; typedef in struct:_BinClos
533 typedef _SBase<_Dom> _Base; typedef in struct:_SClos
541 typedef _SBase<_Array<_Tp> > _Base; typedef in struct:_SClos
581 typedef _GBase<_Dom> _Base; typedef in struct:_GClos
590 typedef _GBase<_Array<_Tp> > _Base; typedef in struct:_GClos
617 typedef _IBase<_Dom> _Base; typedef in struct:_IClos
626 typedef _IBase<valarray<_Tp> > _Base; typedef in struct:_IClos
[all...]
/haiku/headers/cpp/
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
[all...]
H A Dstl_bvector.h311 _Base; typedef in class:_Bvector_base
313 typedef typename _Base::allocator_type allocator_type;
315 _Bvector_base(const allocator_type& __a) : _Base(__a) {}
316 ~_Bvector_base() { _Base::_M_deallocate(); }
375 typedef _Bvector_base<_Alloc> _Base; typedef in class:vector
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(); }
406 using _Base::_M_bit_alloc;
407 using _Base
[all...]
H A Dstl_vector.h107 _Base; typedef in struct:_Vector_base
108 typedef typename _Base::allocator_type allocator_type;
110 _Vector_base(const allocator_type& __a) : _Base(__a) {}
111 _Vector_base(size_t __n, const allocator_type& __a) : _Base(__a) {
158 typedef _Vector_base<_Tp, _Alloc> _Base; typedef in class:vector
170 typedef typename _Base::allocator_type allocator_type;
171 allocator_type get_allocator() const { return _Base::get_allocator(); }
185 using _Base::_M_allocate;
186 using _Base::_M_deallocate;
187 using _Base
[all...]
H A Dstl_list.h183 _Base; typedef in class:_List_base
184 typedef typename _Base::allocator_type allocator_type;
186 _List_base(const allocator_type& __a) : _Base(__a) {
248 typedef _List_base<_Tp, _Alloc> _Base; typedef in class:list
262 typedef typename _Base::allocator_type allocator_type;
263 allocator_type get_allocator() const { return _Base::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(__
[all...]
H A Dstl_slist.h232 _Base; typedef in struct:_Slist_base
233 typedef typename _Base::allocator_type allocator_type;
235 _Slist_base(const allocator_type& __a) : _Base(__a) { _M_head._M_next = 0; }
303 typedef _Slist_base<_Tp,_Alloc> _Base; typedef in class:slist
316 typedef typename _Base::allocator_type allocator_type;
317 allocator_type get_allocator() const { return _Base::get_allocator(); }
346 using _Base::_M_get_node;
347 using _Base::_M_put_node;
348 using _Base::_M_erase_after;
349 using _Base
[all...]
H A Dstl_deque.h342 _Base; typedef in class:_Deque_iterator::_Deque_base
343 typedef typename _Base::allocator_type allocator_type;
348 : _Base(__a), _M_start(), _M_finish()
351 : _Base(__a), _M_start(), _M_finish() {}
481 typedef _Deque_base<_Tp, _Alloc, __bufsiz> _Base; typedef in class:_Deque_iterator::deque
491 typedef typename _Base::allocator_type allocator_type;
492 allocator_type get_allocator() const { return _Base::get_allocator(); }
495 typedef typename _Base::iterator iterator;
496 typedef typename _Base::const_iterator const_iterator;
516 using _Base
[all...]
H A Dstl_tree.h438 // _Base for general standard-conforming allocators.
487 _Base; typedef in struct:_Rb_tree_base
488 typedef typename _Base::allocator_type allocator_type;
491 : _Base(__a) { _M_header = _M_get_node(); }
524 typedef _Rb_tree_base<_Value, _Alloc> _Base; typedef in class:_Rb_tree
540 typedef typename _Base::allocator_type allocator_type;
541 allocator_type get_allocator() const { return _Base::get_allocator(); }
545 using _Base::_M_get_node;
546 using _Base::_M_put_node;
547 using _Base
1313 typedef _Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc> _Base; typedef in struct:rb_tree
[all...]
H A Dstl_rope.h338 _Base; typedef in struct:_Rope_rep_base
339 typedef typename _Base::allocator_type allocator_type;
341 : _Base(__size, __a) {}
1228 _Base; typedef in struct:_Rope_base
1229 typedef typename _Base::allocator_type allocator_type;
1230 _Rope_base(_RopeRep* __t, const allocator_type& __a) : _Base(__t, __a) {}
1231 _Rope_base(const allocator_type& __a) : _Base(__a) {}
1284 typedef _Rope_base<_CharT,_Alloc> _Base; typedef in class:rope
1285 typedef typename _Base::allocator_type allocator_type;
1287 using _Base
[all...]
H A Dropeimpl.h1373 : _Base(__a)

Completed in 425 milliseconds