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

/external/guava/guava/src/com/google/common/collect/
H A DLists.java157 * @param initialArraySize the exact size of the initial backing array for
161 * itself unless its size reaches {@code initialArraySize + 1}
162 * @throws IllegalArgumentException if {@code initialArraySize} is negative
166 int initialArraySize) {
167 checkArgument(initialArraySize >= 0); // for GWT.
168 return new ArrayList<E>(initialArraySize);
165 newArrayListWithCapacity( int initialArraySize) argument

Completed in 252 milliseconds