Searched defs:__list_iterator (Results 1 – 1 of 1) sorted by relevance
160 template <typename T, typename Ptr, typename Ref> struct __list_iterator { struct 161 typedef __list_iterator<T, __typeof__(T::data) *, __typeof__(T::data) &> iterator; argument 162 typedef __list_iterator<T, const __typeof__(T::data) *, const __typeof__(T::data) &> const_iterator; argument 170 __list_iterator(T* it = 0) : item(it) {} in item() argument 171 __list_iterator(const iterator &rhs): item(rhs.item) {} in __list_iterator() argument 178 __list_iterator<T, Ptr, Ref> operator--() { item = item->prev; return *this; } argument 197 friend struct __list_iterator; argument [all...]