Home | History | Annotate | Download | only in hit

Lines Matching full:instance

45      *                          parent object, this will give you an Instance.
50 * in question, this will give you an Instance.
135 public static Instance[] instancesOf(State state, String baseClassName) {
143 Instance[] instances = new Instance[theClass.mInstances.size()];
152 public static Instance[] allInstancesOf(State state, String baseClassName) {
165 ArrayList<Instance> instanceList = new ArrayList<Instance>();
171 Instance[] result = new Instance[instanceList.size()];
193 public static Instance findObject(State state, String id) {
209 public static final Instance[] newInstances(State older, State newer) {
210 ArrayList<Instance> resultList = new ArrayList<Instance>();
219 for (Instance instance: newHeap.mInstances.values()) {
220 Instance oldInstance = oldHeap.getInstance(instance.mId);
223 * If this instance wasn't in the old heap, or was there,
229 || (instance.mClassId != oldInstance.mClassId)) {
230 resultList.add(instance);
235 Instance[] resultArray = new Instance[resultList.size()];