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

/frameworks/base/core/java/android/util/
H A DLongSparseArray.java52 public class LongSparseArray<E> implements Cloneable { class in inherits:Cloneable
61 * Creates a new LongSparseArray containing no mappings.
63 public LongSparseArray() { method in class:LongSparseArray
68 * Creates a new LongSparseArray containing no mappings that will not
74 public LongSparseArray(int initialCapacity) { method in class:LongSparseArray
87 public LongSparseArray<E> clone() {
88 LongSparseArray<E> clone = null;
90 clone = (LongSparseArray<E>) super.clone();
214 * Returns the number of key-value mappings that this LongSparseArray
228 * LongSparseArray store
[all...]
/frameworks/support/compat/java/android/support/v4/util/
H A DLongSparseArray.java21 * {@link android.util.LongSparseArray} that can be used on older versions of the
43 public class LongSparseArray<E> implements Cloneable { class in inherits:Cloneable
52 * Creates a new LongSparseArray containing no mappings.
54 public LongSparseArray() { method in class:LongSparseArray
59 * Creates a new LongSparseArray containing no mappings that will not
65 public LongSparseArray(int initialCapacity) { method in class:LongSparseArray
79 public LongSparseArray<E> clone() {
80 LongSparseArray<E> clone = null;
82 clone = (LongSparseArray<E>) super.clone();
226 * Returns the number of key-value mappings that this LongSparseArray
[all...]

Completed in 811 milliseconds