Lines Matching refs:this

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