Lines Matching refs:TIt

131             typedef iterator TIt;  typedef
139 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
140 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
141 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
142 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
144 friend bool operator==(TIt it1, TIt it2) { return it1.m_pPointer == it2.m_pPointer; }
145 friend bool operator!=(TIt it1, TIt it2) { return !(it1 == it2); }
165 typedef const_iterator TIt; typedef
176 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
177 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
178 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
179 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
181 friend bool operator==(TIt it1, TIt it2) {return it1.m_pPointer == it2.m_pPointer; }
182 friend bool operator!=(TIt it1, TIt it2) {return !(it1 == it2);}
359 typedef iterator TIt; //!< @details :private typedef
390 TIt &operator++() { (void)++it_; return *this; }
397 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
404 TIt &operator--() { (void)--it_; return *this; }
411 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
421 friend bool operator == (TIt it1, TIt it2) { return it1.it_== it2.it_; }
431 …friend bool operator != (TIt it1_, TIt it2_) { return !(it1_ == it2_); } // it1, it2 にすると何故かコンパイラ…
458 typedef const_iterator TIt; //!< @details :private typedef
496 TIt &operator++() { (void)++it_; return *this; }
503 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
510 TIt &operator--() { (void)--it_; return *this;}
517 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
527 friend bool operator == (TIt it1, TIt it2) { return it1.it_== it2.it_; }
537 friend bool operator != (TIt it1_, TIt it2_) { return !(it1_ == it2_); }