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

/libcore/luni/src/main/java/java/util/
H A DArrayList.java29 * ArrayList is an implementation of {@link List}, backed by an array.
44 public class ArrayList<E> extends AbstractList<E> implements Cloneable, Serializable, RandomAccess { class in inherits:AbstractList,Cloneable,Serializable,RandomAccess
46 * The minimum amount by which the capacity of an ArrayList will increase.
65 * Constructs a new instance of {@code ArrayList} with the specified
69 * the initial capacity of this {@code ArrayList}.
71 public ArrayList(int capacity) { method in class:ArrayList
79 * Constructs a new {@code ArrayList} instance with zero initial capacity.
81 public ArrayList() { method in class:ArrayList
86 * Constructs a new instance of {@code ArrayList} containing the elements of
92 public ArrayList(Collectio method in class:ArrayList
[all...]
H A DArrays.java29 private static class ArrayList<E> extends AbstractList<E> implements class in class:Arrays
36 ArrayList(E[] storage) { method in class:Arrays.ArrayList
66 throw java.util.ArrayList.throwIndexOutOfBoundsException(location, a.length);
154 return new ArrayList<T>(array);

Completed in 648 milliseconds