Home | History | Annotate | Download | only in utils

Lines Matching refs:CONST_ITERATOR

74     struct CONST_ITERATOR {
101 // this will handle conversions from iterator to const_iterator
125 * handle comparisons between iterator and const_iterator
178 typedef _ListIterator<T, CONST_ITERATOR> const_iterator;
198 inline const_iterator begin() const {
199 return const_iterator(const_cast<_Node const*>(mpMiddle->getNext()));
204 inline const_iterator end() const {
205 return const_iterator(const_cast<_Node const*>(mpMiddle));
224 void insert(iterator posn, const_iterator first, const_iterator last) {
321 const_iterator firstSrc = right.begin();
322 const_iterator lastSrc = right.end();