Home
last modified time | relevance | path

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

123456

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dparse_numbers.h47 template<unsigned _Base, char _Dig> in _GLIBCXX_VISIBILITY()
50 template<unsigned _Base> in _GLIBCXX_VISIBILITY()
51 struct _Digit<_Base, '0'> : integral_constant<unsigned, 0> in _GLIBCXX_VISIBILITY()
56 template<unsigned _Base> in _GLIBCXX_VISIBILITY()
57 struct _Digit<_Base, '1'> : integral_constant<unsigned, 1> in _GLIBCXX_VISIBILITY()
62 template<unsigned _Base, unsigned _Val> in _GLIBCXX_VISIBILITY()
65 static_assert(_Base > _Val, "invalid digit"); in _GLIBCXX_VISIBILITY()
69 template<unsigned _Base> in _GLIBCXX_VISIBILITY()
70 struct _Digit<_Base, '2'> : _Digit_impl<_Base, 2> in _GLIBCXX_VISIBILITY()
73 template<unsigned _Base> in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dparse_numbers.h48 template<unsigned _Base, char _Dig> in _GLIBCXX_VISIBILITY()
51 template<unsigned _Base> in _GLIBCXX_VISIBILITY()
52 struct _Digit<_Base, '0'> : integral_constant<unsigned, 0> in _GLIBCXX_VISIBILITY()
57 template<unsigned _Base> in _GLIBCXX_VISIBILITY()
58 struct _Digit<_Base, '1'> : integral_constant<unsigned, 1> in _GLIBCXX_VISIBILITY()
63 template<unsigned _Base, unsigned _Val> in _GLIBCXX_VISIBILITY()
66 static_assert(_Base > _Val, "invalid digit"); in _GLIBCXX_VISIBILITY()
70 template<unsigned _Base> in _GLIBCXX_VISIBILITY()
71 struct _Digit<_Base, '2'> : _Digit_impl<_Base, 2> in _GLIBCXX_VISIBILITY()
74 template<unsigned _Base> in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/
H A Dset.h50 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
54 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
55 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
66 _Base_ref(const _Base& __r) : _M_ref(__r) { } in _GLIBCXX_VISIBILITY()
68 const _Base& _M_ref; in _GLIBCXX_VISIBILITY()
78 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
79 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
86 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
87 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
88 typedef typename _Base::pointer pointer; in _GLIBCXX_VISIBILITY()
[all …]
H A Dmap.h51 _Key, _Tp, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
55 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
56 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
67 _Base_ref(const _Base& __r) : _M_ref(__r) { } in _GLIBCXX_VISIBILITY()
69 const _Base& _M_ref; in _GLIBCXX_VISIBILITY()
79 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
80 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
87 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
88 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
89 typedef typename _Base::pointer pointer; in _GLIBCXX_VISIBILITY()
[all …]
H A Dmultiset.h50 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
54 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
55 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
66 _Base_ref(const _Base& __r) : _M_ref(__r) { } in _GLIBCXX_VISIBILITY()
68 const _Base& _M_ref; in _GLIBCXX_VISIBILITY()
78 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
79 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
86 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
87 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
88 typedef typename _Base::pointer pointer; in _GLIBCXX_VISIBILITY()
[all …]
H A Dmultimap.h51 _Key, _Tp, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
55 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
56 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
67 _Base_ref(const _Base& __r) : _M_ref(__r) { } in _GLIBCXX_VISIBILITY()
69 const _Base& _M_ref; in _GLIBCXX_VISIBILITY()
79 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
80 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
87 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
88 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
89 typedef typename _Base::pointer pointer; in _GLIBCXX_VISIBILITY()
[all …]
H A Dunordered_set67 _Value, _Hash, _Pred, _Alloc> _Base;
71 typedef typename _Base::const_iterator _Base_const_iterator;
72 typedef typename _Base::iterator _Base_iterator;
73 typedef typename _Base::const_local_iterator _Base_const_local_iterator;
74 typedef typename _Base::local_iterator _Base_local_iterator;
84 _Base_ref(const _Base& __r) : _M_ref(__r) { }
86 const _Base& _M_ref;
90 typedef typename _Base::size_type size_type;
91 typedef typename _Base::difference_type difference_type;
92 typedef typename _Base::hasher hasher;
[all …]
H A Dstring100 typedef std::basic_string<_CharT, _Traits, _Allocator> _Base;
110 typename _Base::__const_iterator, basic_string> __const_iterator;
117 typedef typename _Base::size_type size_type;
118 typedef typename _Base::difference_type difference_type;
119 typedef typename _Base::reference reference;
120 typedef typename _Base::const_reference const_reference;
121 typedef typename _Base::pointer pointer;
122 typedef typename _Base::const_pointer const_pointer;
125 typename _Base::iterator, basic_string> iterator;
127 typename _Base::const_iterator, basic_string> const_iterator;
[all …]
H A Dunordered_map70 _Pred, _Alloc> _Base;
73 typedef typename _Base::const_iterator _Base_const_iterator;
74 typedef typename _Base::iterator _Base_iterator;
75 typedef typename _Base::const_local_iterator
77 typedef typename _Base::local_iterator _Base_local_iterator;
87 _Base_ref(const _Base& __r) : _M_ref(__r) { }
89 const _Base& _M_ref;
93 typedef typename _Base::size_type size_type;
94 typedef typename _Base::hasher hasher;
95 typedef typename _Base::key_equal key_equal;
[all …]
H A Dlist56 typedef _GLIBCXX_STD_C::list<_Tp, _Allocator> _Base;
60 typedef typename _Base::iterator _Base_iterator;
61 typedef typename _Base::const_iterator _Base_const_iterator;
68 // Reference wrapper for base class. Disambiguates list(const _Base&)
73 _Base_ref(const _Base& __r) : _M_ref(__r) { }
75 const _Base& _M_ref;
79 typedef typename _Base::reference reference;
80 typedef typename _Base::const_reference const_reference;
87 typedef typename _Base::size_type size_type;
88 typedef typename _Base::difference_type difference_type;
[all …]
H A Ddeque56 typedef _GLIBCXX_STD_C::deque<_Tp, _Allocator> _Base;
60 typedef typename _Base::const_iterator _Base_const_iterator;
61 typedef typename _Base::iterator _Base_iterator;
67 // Reference wrapper for base class. Disambiguates deque(const _Base&)
72 _Base_ref(const _Base& __r) : _M_ref(__r) { }
74 const _Base& _M_ref;
78 typedef typename _Base::reference reference;
79 typedef typename _Base::const_reference const_reference;
86 typedef typename _Base::size_type size_type;
87 typedef typename _Base::difference_type difference_type;
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dvstring.tcc42 template <typename, typename, typename> class _Base>
43 const typename __versa_string<_CharT, _Traits, _Alloc, _Base>::size_type
44 __versa_string<_CharT, _Traits, _Alloc, _Base>::npos;
47 template <typename, typename, typename> class _Base>
49 __versa_string<_CharT, _Traits, _Alloc, _Base>::
60 template <typename, typename, typename> class _Base>
61 __versa_string<_CharT, _Traits, _Alloc, _Base>&
62 __versa_string<_CharT, _Traits, _Alloc, _Base>::
80 template <typename, typename, typename> class _Base>
82 __versa_string<_CharT, _Traits, _Alloc, _Base>&
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dvstring.tcc42 template <typename, typename, typename> class _Base>
43 const typename __versa_string<_CharT, _Traits, _Alloc, _Base>::size_type
44 __versa_string<_CharT, _Traits, _Alloc, _Base>::npos;
47 template <typename, typename, typename> class _Base>
49 __versa_string<_CharT, _Traits, _Alloc, _Base>::
60 template <typename, typename, typename> class _Base>
61 __versa_string<_CharT, _Traits, _Alloc, _Base>&
62 __versa_string<_CharT, _Traits, _Alloc, _Base>::
80 template <typename, typename, typename> class _Base>
82 __versa_string<_CharT, _Traits, _Alloc, _Base>&
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/
H A Dset.h50 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
54 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
55 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
68 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
69 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
76 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
77 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
78 typedef typename _Base::pointer pointer; in _GLIBCXX_VISIBILITY()
79 typedef typename _Base::const_pointer const_pointer; in _GLIBCXX_VISIBILITY()
86 set() : _Base() { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dmap.h51 _Key, _Tp, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
55 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
56 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
69 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
70 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
77 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
78 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
79 typedef typename _Base::pointer pointer; in _GLIBCXX_VISIBILITY()
80 typedef typename _Base::const_pointer const_pointer; in _GLIBCXX_VISIBILITY()
87 map() : _Base() { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dmultiset.h50 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
54 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
55 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
68 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
69 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
76 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
77 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
78 typedef typename _Base::pointer pointer; in _GLIBCXX_VISIBILITY()
79 typedef typename _Base::const_pointer const_pointer; in _GLIBCXX_VISIBILITY()
86 multiset() : _Base() { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dmultimap.h51 _Key, _Tp, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
55 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
56 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
69 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
70 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
77 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
78 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
79 typedef typename _Base::pointer pointer; in _GLIBCXX_VISIBILITY()
80 typedef typename _Base::const_pointer const_pointer; in _GLIBCXX_VISIBILITY()
87 multimap() : _Base() { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstring92 typedef std::basic_string<_CharT, _Traits, _Allocator> _Base;
102 typename _Base::__const_iterator, basic_string> __const_iterator;
109 typedef typename _Base::size_type size_type;
110 typedef typename _Base::difference_type difference_type;
111 typedef typename _Base::reference reference;
112 typedef typename _Base::const_reference const_reference;
113 typedef typename _Base::pointer pointer;
114 typedef typename _Base::const_pointer const_pointer;
117 typename _Base::iterator, basic_string> iterator;
119 typename _Base::const_iterator, basic_string> const_iterator;
[all …]
H A Dunordered_set67 _Value, _Hash, _Pred, _Alloc> _Base;
71 typedef typename _Base::const_iterator _Base_const_iterator;
72 typedef typename _Base::iterator _Base_iterator;
73 typedef typename _Base::const_local_iterator _Base_const_local_iterator;
74 typedef typename _Base::local_iterator _Base_local_iterator;
82 typedef typename _Base::size_type size_type;
83 typedef typename _Base::hasher hasher;
84 typedef typename _Base::key_equal key_equal;
85 typedef typename _Base::allocator_type allocator_type;
87 typedef typename _Base::key_type key_type;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/
H A Dunordered_set56 typedef _GLIBCXX_STD_BASE _Base;
58 _Base&
61 const _Base&
65 typedef typename _Base::size_type size_type;
66 typedef typename _Base::hasher hasher;
67 typedef typename _Base::key_equal key_equal;
68 typedef typename _Base::allocator_type allocator_type;
69 typedef typename _Base::key_type key_type;
70 typedef typename _Base::value_type value_type;
71 typedef typename _Base::difference_type difference_type;
[all …]
H A Dunordered_map56 typedef typename _GLIBCXX_STD_BASE _Base;
58 _Base&
61 const _Base&
65 typedef typename _Base::size_type size_type;
66 typedef typename _Base::hasher hasher;
67 typedef typename _Base::key_equal key_equal;
68 typedef typename _Base::allocator_type allocator_type;
69 typedef typename _Base::key_type key_type;
70 typedef typename _Base::value_type value_type;
71 typedef typename _Base::difference_type difference_type;
[all …]
H A Dmap.h45 typedef _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
47 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
48 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
54 typedef typename _Base::value_type value_type; in _GLIBCXX_VISIBILITY()
56 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
57 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
65 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
66 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
72 : _Base() { } in _GLIBCXX_VISIBILITY()
74 : _Base(__x) { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dmultiset.h46 typedef _GLIBCXX_STD_C::multiset<_Key, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
48 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
49 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
58 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
59 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
68 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
69 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
75 : _Base() { } in _GLIBCXX_VISIBILITY()
77 : _Base(__x) { } in _GLIBCXX_VISIBILITY()
88 : _Base(__comp, __a) { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dset.h46 typedef _GLIBCXX_STD_C::set<_Key, _Compare, _Allocator> _Base; in _GLIBCXX_VISIBILITY() typedef
48 typedef typename _Base::iterator _Base_iterator; in _GLIBCXX_VISIBILITY()
49 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
57 typedef typename _Base::reference reference; in _GLIBCXX_VISIBILITY()
58 typedef typename _Base::const_reference const_reference; in _GLIBCXX_VISIBILITY()
66 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
67 typedef typename _Base::difference_type difference_type; in _GLIBCXX_VISIBILITY()
72 : _Base() { } in _GLIBCXX_VISIBILITY()
74 : _Base(__x) { } in _GLIBCXX_VISIBILITY()
85 : _Base(__comp, __a) { } in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Dunordered_set.h57 _Base; in _GLIBCXX_VISIBILITY() typedef
60 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
61 typedef typename _Base::hasher hasher; in _GLIBCXX_VISIBILITY()
62 typedef typename _Base::key_equal key_equal; in _GLIBCXX_VISIBILITY()
63 typedef typename _Base::allocator_type allocator_type; in _GLIBCXX_VISIBILITY()
70 : _Base(__n, __hf, __detail::_Mod_range_hashing(), in _GLIBCXX_VISIBILITY()
81 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(), in _GLIBCXX_VISIBILITY()
106 _Base; in _GLIBCXX_VISIBILITY() typedef
109 typedef typename _Base::size_type size_type; in _GLIBCXX_VISIBILITY()
110 typedef typename _Base::hasher hasher; in _GLIBCXX_VISIBILITY()
[all …]

123456