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

/frameworks/base/core/java/android/util/
H A DLongSparseArray.java49 public class LongSparseArray<E> implements Cloneable { class in inherits:Cloneable
58 * Creates a new LongSparseArray containing no mappings.
60 public LongSparseArray() { method in class:LongSparseArray
65 * Creates a new LongSparseArray containing no mappings that will not
71 public LongSparseArray(int initialCapacity) { method in class:LongSparseArray
85 public LongSparseArray<E> clone() {
86 LongSparseArray<E> clone = null;
88 clone = (LongSparseArray<E>) super.clone();
232 * Returns the number of key-value mappings that this LongSparseArray
246 * LongSparseArray store
[all...]
/frameworks/support/v4/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 1275 milliseconds