Home | History | Annotate | Download | only in util

Lines Matching defs:LongSparseArray

26 public class LongSparseArray<E> implements Cloneable {
35 * Creates a new LongSparseArray containing no mappings.
37 public LongSparseArray() {
42 * Creates a new LongSparseArray containing no mappings that will not
46 public LongSparseArray(int initialCapacity) {
56 public LongSparseArray<E> clone() {
57 LongSparseArray<E> clone = null;
59 clone = (LongSparseArray<E>) super.clone();
203 * Returns the number of key-value mappings that this LongSparseArray
217 * LongSparseArray stores.
230 * LongSparseArray stores.
244 * LongSparseArray stores.
288 * Removes all key-value mappings from this LongSparseArray.