Lines Matching refs:TIt
204 typedef iterator TIt; typedef
223 TIt &operator++() { ++m_pCurrent; return *this; }
224 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
225 TIt &operator--() { --m_pCurrent; return *this; }
226 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
228 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
229 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }
243 typedef const_iterator TIt; typedef
260 TIt &operator++() { ++m_pCurrent; return *this; }
261 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
262 TIt &operator--() { --m_pCurrent; return *this; }
263 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
265 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
266 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }
345 typedef const_iterator TIt; typedef
362 TIt &operator++() { ++m_pCurrent; return *this; }
363 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
364 TIt &operator--() { --m_pCurrent; return *this; }
365 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
367 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
368 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }