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

/frameworks/base/core/java/android/util/
H A DLongSparseArray.java26 public class LongSparseArray<E> implements Cloneable { class in inherits:Cloneable
35 * Creates a new LongSparseArray containing no mappings.
37 public LongSparseArray() { method in class:LongSparseArray
42 * Creates a new LongSparseArray containing no mappings that will not
46 public LongSparseArray(int initialCapacity) { method in class:LongSparseArray
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 store
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java24 public class LongSparseArray<E> implements Cloneable { class in inherits:Cloneable
33 * Creates a new LongSparseArray containing no mappings.
35 public LongSparseArray() { method in class:LongSparseArray
40 * Creates a new LongSparseArray containing no mappings that will not
44 public LongSparseArray(int initialCapacity) { method in class:LongSparseArray
54 public LongSparseArray<E> clone() {
55 LongSparseArray<E> clone = null;
57 clone = (LongSparseArray<E>) super.clone();
201 * Returns the number of key-value mappings that this LongSparseArray
215 * LongSparseArray store
[all...]

Completed in 146 milliseconds