Symbol: IteratorForIndex
headers/private/kernel/util/Vector.h
65
inline Iterator IteratorForIndex(int32 index);
headers/private/kernel/util/Vector.h
66
inline ConstIterator IteratorForIndex(int32 index) const;
headers/private/kernel/util/VectorMap.h
541
return Iterator(this, fElements.IteratorForIndex(index));
headers/private/kernel/util/VectorMap.h
559
return ConstIterator(this, fElements.IteratorForIndex(index));
headers/private/kernel/util/VectorMap.h
595
return Iterator(this, fElements.IteratorForIndex(index));
headers/private/kernel/util/VectorMap.h
599
return Iterator(this, fElements.IteratorForIndex(index - 1));
headers/private/kernel/util/VectorMap.h
636
return ConstIterator(this, fElements.IteratorForIndex(index));
headers/private/kernel/util/VectorMap.h
640
return ConstIterator(this, fElements.IteratorForIndex(index - 1));
headers/private/kernel/util/VectorSet.h
318
return fElements.IteratorForIndex(index);
headers/private/kernel/util/VectorSet.h
336
return fElements.IteratorForIndex(index);
headers/private/kernel/util/VectorSet.h
372
return fElements.IteratorForIndex(index);
headers/private/kernel/util/VectorSet.h
376
return fElements.IteratorForIndex(index - 1);
headers/private/kernel/util/VectorSet.h
413
return fElements.IteratorForIndex(index);
headers/private/kernel/util/VectorSet.h
417
return fElements.IteratorForIndex(index - 1);
headers/private/userlandfs/shared/Vector.h
61
inline Iterator IteratorForIndex(int32 index);
headers/private/userlandfs/shared/Vector.h
62
inline ConstIterator IteratorForIndex(int32 index) const;
src/tests/system/kernel/util/VectorMapTest.cpp
612
Iterator it = v.IteratorForIndex(i);
src/tests/system/kernel/util/VectorMapTest.cpp
642
Key key = v.IteratorForIndex(index)->Key();
src/tests/system/kernel/util/VectorMapTest.cpp
655
v.Erase(v.IteratorForIndex(index));
src/tests/system/kernel/util/VectorMapTest.cpp
677
Key key = v.IteratorForIndex(i)->Key();
src/tests/system/kernel/util/VectorMapTest.cpp
688
Key key = v.IteratorForIndex(i)->Key();
src/tests/system/kernel/util/VectorMapTest.cpp
709
Key key = v.IteratorForIndex(i)->Key();
src/tests/system/kernel/util/VectorSetTest.cpp
495
Value value = *v.IteratorForIndex(index);
src/tests/system/kernel/util/VectorSetTest.cpp
508
v.Erase(v.IteratorForIndex(index));
src/tests/system/kernel/util/VectorSetTest.cpp
530
const Value& value = *v.IteratorForIndex(i);
src/tests/system/kernel/util/VectorSetTest.cpp
553
const Value& value = *v.IteratorForIndex(i);
src/tests/system/kernel/util/VectorTest.cpp
302
CPPUNIT_ASSERT(fMyVector.IteratorForIndex(index) == fMyVector.End());
src/tests/system/kernel/util/VectorTest.cpp
305
MyIterator myIt = fMyVector.IteratorForIndex(index);
src/tests/system/kernel/util/VectorTest.cpp
316
CPPUNIT_ASSERT(fMyVector.IteratorForIndex(index) == fMyVector.End());
src/tests/system/kernel/util/VectorTest.cpp
319
MyIterator myIt = fMyVector.IteratorForIndex(index);
src/tests/system/kernel/util/VectorTest.cpp
599
v.Insert(strategy.Generate(), v.IteratorForIndex(index));
src/tests/system/kernel/util/VectorTest.cpp
642
v.Erase(v.IteratorForIndex(index));