Home | History | Annotate | Download | only in bits

Lines Matching refs:_Tp

102   template<typename _Category, typename _Tp, typename _Distance = ptrdiff_t,
103 typename _Pointer = _Tp*, typename _Reference = _Tp&>
109 typedef _Tp value_type;
134 template<typename _Tp>
135 struct iterator_traits<_Tp*>
138 typedef _Tp value_type;
140 typedef _Tp* pointer;
141 typedef _Tp& reference;
144 template<typename _Tp>
145 struct iterator_traits<const _Tp*>
148 typedef _Tp value_type;
150 typedef const _Tp* pointer;
151 typedef const _Tp& reference;