Home | History | Annotate | Download | only in include

Lines Matching full:iterator_type

87     typedef Iterator                                            iterator_type;
544 typedef _Iter iterator_type;
935 typedef _Iter iterator_type;
936 typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
937 typedef typename iterator_traits<iterator_type>::value_type value_type;
938 typedef typename iterator_traits<iterator_type>::difference_type difference_type;
939 typedef typename iterator_traits<iterator_type>::pointer pointer;
943 typedef typename iterator_traits<iterator_type>::reference reference;
955 typename iterator_traits<iterator_type>::reference __ref = *__i;
1112 typedef _Iter iterator_type;
1113 typedef typename iterator_traits<iterator_type>::iterator_category iterator_category;
1114 typedef typename iterator_traits<iterator_type>::value_type value_type;
1115 typedef typename iterator_traits<iterator_type>::difference_type difference_type;
1116 typedef typename iterator_traits<iterator_type>::pointer pointer;
1117 typedef typename iterator_traits<iterator_type>::reference reference;
1119 iterator_type __i;
1131 typename enable_if<is_convertible<_Up, iterator_type>::value>::type* = 0) _NOEXCEPT
1223 _LIBCPP_INLINE_VISIBILITY iterator_type base() const _NOEXCEPT {return __i;}
1227 _LIBCPP_INLINE_VISIBILITY __wrap_iter(const void* __p, iterator_type __x) : __i(__x)
1232 _LIBCPP_INLINE_VISIBILITY __wrap_iter(iterator_type __x) _NOEXCEPT : __i(__x) {}