Searched refs:GrowableArrayIterator (Results 1 - 11 of 11) sorted by relevance

/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1SurvivorRegions.cpp43 for (GrowableArrayIterator<HeapRegion*> it = _regions->begin();
H A Dg1DefaultPolicy.cpp383 for (GrowableArrayIterator<HeapRegion*> it = survivor_regions->begin();
1148 for (GrowableArrayIterator<HeapRegion*> it = survivors->regions()->begin();
/openjdk10/hotspot/src/share/vm/utilities/
H A DgrowableArray.hpp149 template<class E> class GrowableArrayIterator;
256 GrowableArrayIterator<E> begin() const {
257 return GrowableArrayIterator<E>(this, 0);
260 GrowableArrayIterator<E> end() const {
261 return GrowableArrayIterator<E>(this, length());
492 template<class E> class GrowableArrayIterator : public StackObj { class in inherits:StackObj
501 GrowableArrayIterator(const GrowableArray<E>* array, int position) : _array(array), _position(position) { function in class:GrowableArrayIterator
506 GrowableArrayIterator() : _array(NULL), _position(0) { } function in class:GrowableArrayIterator
507 GrowableArrayIterator<E>& operator++() { ++_position; return *this; }
510 bool operator==(const GrowableArrayIterator<
[all...]
/openjdk10/hotspot/src/share/vm/aot/
H A DaotLoader.cpp38 #define FOR_ALL_AOT_HEAPS(heap) for (GrowableArrayIterator<AOTCodeHeap*> heap = heaps()->begin(); heap != heaps()->end(); ++heap)
40 #define FOR_ALL_AOT_LIBRARIES(lib) for (GrowableArrayIterator<AOTLib*> lib = libraries()->begin(); lib != libraries()->end(); ++lib)
H A DaotCodeHeap.cpp124 for (GrowableArrayIterator<AOTLib*> lib = libraries->begin(); lib != libraries->end(); ++lib) {
/openjdk10/hotspot/src/share/vm/code/
H A DcodeCache.hpp301 GrowableArrayIterator<CodeHeap*> _heap;
302 GrowableArrayIterator<CodeHeap*> _end;
H A DcodeCache.cpp133 #define FOR_ALL_HEAPS(heap) for (GrowableArrayIterator<CodeHeap*> heap = _heaps->begin(); heap != _heaps->end(); ++heap)
134 #define FOR_ALL_NMETHOD_HEAPS(heap) for (GrowableArrayIterator<CodeHeap*> heap = _nmethod_heaps->begin(); heap != _nmethod_heaps->end(); ++heap)
135 #define FOR_ALL_ALLOCABLE_HEAPS(heap) for (GrowableArrayIterator<CodeHeap*> heap = _allocable_heaps->begin(); heap != _allocable_heaps->end(); ++heap)
H A Ddependencies.cpp658 for (GrowableArrayIterator<DepArgument> it = args->begin(); it != args->end(); ++it) {
680 for (GrowableArrayIterator<ciBaseObject*> it = args->begin(); it != args->end(); ++it) {
/openjdk10/hotspot/src/share/vm/opto/
H A Dsubnode.cpp517 for (GrowableArrayIterator<Node*> it = out_rel->begin(); it != out_rel->end(); ++it) {
522 for (GrowableArrayIterator<Node*> p = proj.begin(); p != proj.end(); ++p) {
H A Dnode.cpp2001 for (GrowableArrayIterator<Node*> it = ns->begin(); it != ns->end(); ++it) {
2004 for (GrowableArrayIterator<Node*> d = sns.begin(); d != sns.end(); ++d) {
/openjdk10/hotspot/src/share/vm/prims/
H A Dwhitebox.cpp1400 for (GrowableArrayIterator<CodeBlobStub*> it = blobs.begin();

Completed in 193 milliseconds