Lines Matching refs:this
56 return *this;
60 return *this;
73 return *this;
77 InputIterator it = *this;
78 ++*this;
126 ForwardIterator& operator++ () { ++my_ptr; return *this; }
128 ForwardIterator result = *this;
129 ++*this;
152 RandomIterator& operator++ () { ++my_ptr; return *this; }
154 RandomIterator result = *this;
155 ++*this;
158 RandomIterator& operator--() { --my_ptr; return *this; }
160 RandomIterator result = *this;
161 --*this;
176 return *this;
180 return *this;
210 ConstRandomIterator& operator++ () { ++my_ptr; return *this; }
212 ConstRandomIterator result = *this;
213 ++*this;
216 ConstRandomIterator& operator--() { --my_ptr; return *this; }
218 ConstRandomIterator result = *this;
219 --*this;
235 return *this;
239 return *this;