Lines Matching refs:this
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; }
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; }
260 void clear() { (void)this->erase(begin(), end()); } in clear()
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; }
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; }
597 const_iterator begin() const { return const_iterator(const_cast<Self*>(this)->begin()); } in begin()
605 const_iterator end() const { return const_iterator(const_cast<Self*>(this)->end()); } in end()
857 size_type GetSize() const { return this->size(); } //!< @details :private in GetSize()
858 bool IsEmpty() const { return this->empty(); } //!< @details :private in IsEmpty()
860 iterator GetBeginIter() { return this->begin(); } //!< @details :private in GetBeginIter()
861 const_iterator GetBeginIter() const { return this->begin(); } //!< @details :private in GetBeginIter()
862 iterator GetEndIter() { return this->end(); } //!< @details :private in GetEndIter()
863 const_iterator GetEndIter() const { return this->end(); } //!< @details :private in GetEndIter()
865 …reverse_iterator GetBeginReverseIter() { return this->rbegin(); } //!< @details :pri… in GetBeginReverseIter()
866 …const_reverse_iterator GetBeginReverseIter() const { return this->rbegin(); } //!< @details :pri… in GetBeginReverseIter()
867 …reverse_iterator GetEndReverseIter() { return this->rend(); } //!< @details :pri… in GetEndReverseIter()
868 …const_reverse_iterator GetEndReverseIter() const { return this->rend(); } //!< @details :pri… in GetEndReverseIter()
870 reference GetFront() { return this->front(); } //!< @details :private in GetFront()
871 const_reference GetFront() const { return this->front(); } //!< @details :private in GetFront()
872 reference GetBack() { return this->back(); } //!< @details :private in GetBack()
873 const_reference GetBack() const { return this->back(); } //!< @details :private in GetBack()
875 iterator Insert(iterator it, pointer p) { return this->insert(it, p); } //!< @details :private in Insert()
876 void PushFront(pointer p) { this->push_front(p); } //!< @details :private in PushFront()
877 void PushBack(pointer p) { this->push_back(p); } //!< @details :private in PushBack()
879 void PopFront() { this->pop_front(); } //!< @details :private in PopFront()
880 void PopBack() { this->pop_back(); } //!< @details :private in PopBack()
882 …iterator Erase(iterator it) { return this->erase(it); } //!< @… in Erase()
883 …iterator Erase(iterator itFirst,iterator itLast) { return this->erase(itFirst, itLast); } //!< @… in Erase()
884 …iterator Erase(pointer p) { return this->erase(p); } //!< @… in Erase()
886 void Clear() { this->clear(); } //!< @details :private in Clear()
887 void Reverse() { this->reverse(); } //!< @details :private in Reverse()