Searched defs:GrowableArray (Results 1 - 2 of 2) sorted by relevance
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | GrowableArray.java | 33 public class GrowableArray<T> extends GenericGrowableArray { class in inherits:GenericGrowableArray 43 Type type = db.lookupType("GrowableArray<int>"); 51 public static <S> GrowableArray<S> create(Address addr, InstanceConstructor<S> v) { 53 return new GrowableArray<S>(addr, v); 64 private GrowableArray(Address addr, InstanceConstructor<T> v) { method in class:GrowableArray
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | growableArray.hpp | 41 /* the the GrowableArray does not outlive the HandleMark that contains */ 46 /* GrowableArray<Handle>* arr = new GrowableArray<Handle>(size); */ 126 // Consider using new(arena) GrowableArray<T> to allocate the header. 150 template<class E> class GrowableArray : public GenericGrowableArray { class in inherits:GenericGrowableArray 160 GrowableArray(Thread* thread, int initial_size) : GenericGrowableArray(initial_size, 0, false) { function in class:GrowableArray 165 GrowableArray(int initial_size, bool C_heap = false, MEMFLAGS F = mtInternal) function in class:GrowableArray 171 GrowableArray(int initial_size, int initial_len, const E& filler, bool C_heap = false, MEMFLAGS memflags = mtInternal) function in class:GrowableArray 179 GrowableArray(Arena* arena, int initial_size, int initial_len, const E& filler) : GenericGrowableArray(arena, initial_size, initial_len) { function in class:GrowableArray 186 GrowableArray() function in class:GrowableArray [all...] |
Completed in 105 milliseconds