Lines Matching refs:fMyIterator
191 fMyIterator(myIt), in TestIterator()
198 fMyIterator(other.fMyIterator), in TestIterator()
201 CHK(fMyIterator == other.fMyIterator); in TestIterator()
206 MyIterator &myResult = ++fMyIterator;
219 MyIterator oldMyResult = fMyIterator;
220 MyIterator myResult = fMyIterator++;
234 MyIterator &myResult = --fMyIterator;
243 MyIterator oldMyResult = fMyIterator;
244 MyIterator myResult = fMyIterator--;
255 fMyIterator = other.fMyIterator;
257 CHK(fMyIterator == other.fMyIterator);
263 bool result = (fMyIterator == other.fMyIterator);
270 bool result = (fMyIterator != other.fMyIterator);
277 Entry entry = *fMyIterator;
285 Entry entry = fMyIterator.operator->();
293 bool result = fMyIterator;
294 CHK((fMyIterator == fMap->fMyMap.Null()) != result);
300 MyIterator fMyIterator; variable
372 MyIterator myIt = fMyMap.Erase(iterator.fMyIterator); in Erase()