Searched defs:StackValueCollection (Results 1 - 2 of 2) sorted by relevance

/openjdk10/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp32 class StackValueCollection : public ResourceObj { class in inherits:ResourceObj
37 StackValueCollection() { _values = new GrowableArray<StackValue*>(); } function in class:StackValueCollection
38 StackValueCollection(int length) { _values = new GrowableArray<StackValue*>(length); } function in class:StackValueCollection
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DStackValueCollection.java31 public class StackValueCollection { class
34 public StackValueCollection() { list = new ArrayList(); } method in class:StackValueCollection
35 public StackValueCollection(int length) { list = new ArrayList(length); } method in class:StackValueCollection

Completed in 90 milliseconds