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

/frameworks/base/core/java/android/util/
H A DSparseArray.java52 public class SparseArray<E> implements Cloneable { class in inherits:Cloneable
61 * Creates a new SparseArray containing no mappings.
63 public SparseArray() { method in class:SparseArray
68 * Creates a new SparseArray containing no mappings that will not
74 public SparseArray(int initialCapacity) { method in class:SparseArray
87 public SparseArray<E> clone() {
88 SparseArray<E> clone = null;
90 clone = (SparseArray<E>) super.clone();
167 // Log.e("SparseArray", "gc start with " + mSize);
191 // Log.e("SparseArray", "g
[all...]

Completed in 83 milliseconds