Home | History | Annotate | Download | only in hit

Lines Matching defs:Instance

23 public abstract class Instance {
26 // Id of the ClassObj of which this object is an instance
39 public boolean accept(Instance instance);
43 private ArrayList<Instance> mParents;
52 * for in a heap other than the one this Instance is in.
62 public abstract void visit(Set<Instance> resultSet, Filter filter);
69 HashSet<Instance> set = new HashSet<Instance>();
75 for (Instance instance: set) {
76 size += instance.getSize();
93 // Add to the list of objects that have a hard reference to this Instance
94 public void addParent(Instance parent) {
96 mParents = new ArrayList<Instance>();
102 public ArrayList<Instance> getParents() {
104 mParents = new ArrayList<Instance>();