Lines Matching refs:Object

100     Object elementData[];
126 this.elementData = new Object[initialCapacity]; in InterfaceContainer()
139 Object oldData[] = elementData; in trimToSize()
140 elementData = new Object[size]; in trimToSize()
157 Object oldData[] = elementData; in ensureCapacity()
161 elementData = new Object[newCapacity]; in ensureCapacity()
172 synchronized public boolean add(Object o) in add()
194 synchronized public void add(int index, Object element) in add()
232 Object o= e.next(); in addAll()
262 Object[] arColl= new Object[sizeCol]; in addAll()
267 Object o= icol.next(); in addAll()
309 synchronized public boolean contains(Object elem) in contains()
322 Object obj= it.next(); in containsAll()
340 synchronized public Object get(int index) in get()
359 synchronized public int indexOf(Object elem) in indexOf()
415 synchronized public int lastIndexOf(Object elem) in lastIndexOf()
449 synchronized public Object clone() in clone()
451 Object ret= null; in clone()
455 cont.elementData = new Object[size]; in clone()
492 synchronized public Object remove(int index) in remove()
494 Object ret= null; in remove()
511 synchronized public boolean remove(Object obj) in remove()
534 Object obj= it.next(); in removeAll()
549 Object[] arRetained= new Object[size]; in retainAll()
553 Object curElem= elementData[i]; in retainAll()
571 Object o= itColl.next(); in retainAll()
603 synchronized public Object set(int index, Object element) in set()
605 Object ret= null; in set()
635 synchronized public Object[] toArray() in toArray()
639 Object[] result = new Object[size]; in toArray()
667 synchronized public Object[] toArray(Object a[]) in toArray()
670 a = (Object[])java.lang.reflect.Array.newInstance( in toArray()
710 Object o= aIt.next(); in disposeAndClear()
744 Object lastRetObj= null;
756 public synchronized Object next() in next()
760 Object next = dataIt.get(cursor); in next()
805 public synchronized void add(Object o) in add()
823 public synchronized Object previous() in previous()
827 Object previous = dataIt.get(--cursor); in previous()
844 public synchronized void set(Object o) in set()