Lines Matching refs:TIt

129             typedef iterator TIt;  typedef
137 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
138 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
139 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
140 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
142 friend bool operator==(TIt it1, TIt it2) { return it1.m_pPointer == it2.m_pPointer; }
143 friend bool operator!=(TIt it1, TIt it2) { return !(it1 == it2); }
163 typedef const_iterator TIt; typedef
174 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
175 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
176 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
177 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
179 friend bool operator==(TIt it1, TIt it2) {return it1.m_pPointer == it2.m_pPointer; }
180 friend bool operator!=(TIt it1, TIt it2) {return !(it1 == it2);}
356 typedef iterator TIt; //!< @details :private typedef
387 TIt &operator++() { (void)++it_; return *this; }
394 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
401 TIt &operator--() { (void)--it_; return *this; }
408 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
418 friend bool operator == (TIt it1, TIt it2) { return it1.it_== it2.it_; }
428 …friend bool operator != (TIt it1_, TIt it2_) { return !(it1_ == it2_); } // it1, it2 にすると何故かコンパイラ…
455 typedef const_iterator TIt; //!< @details :private typedef
493 TIt &operator++() { (void)++it_; return *this; }
500 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
507 TIt &operator--() { (void)--it_; return *this;}
514 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
524 friend bool operator == (TIt it1, TIt it2) { return it1.it_== it2.it_; }
534 friend bool operator != (TIt it1_, TIt it2_) { return !(it1_ == it2_); }