Home | History | Annotate | Download | only in netd

Lines Matching full:const_iterator

73     struct CONST_ITERATOR {
100 // this will handle conversions from iterator to const_iterator
124 * handle comparisons between iterator and const_iterator
177 typedef _ListIterator<T, CONST_ITERATOR> const_iterator;
197 inline const_iterator begin() const {
198 return const_iterator(const_cast<_Node const*>(mpMiddle->getNext()));
203 inline const_iterator end() const {
204 return const_iterator(const_cast<_Node const*>(mpMiddle));
223 void insert(iterator posn, const_iterator first, const_iterator last) {
320 const_iterator firstSrc = right.begin();
321 const_iterator lastSrc = right.end();