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

/frameworks/base/core/java/android/util/
H A DSparseArray.java26 public class SparseArray<E> implements Cloneable { class in inherits:Cloneable
35 * Creates a new SparseArray containing no mappings.
37 public SparseArray() { method in class:SparseArray
42 * Creates a new SparseArray containing no mappings that will not
46 public SparseArray(int initialCapacity) { method in class:SparseArray
56 public SparseArray<E> clone() {
57 SparseArray<E> clone = null;
59 clone = (SparseArray<E>) super.clone();
123 // Log.e("SparseArray", "gc start with " + mSize);
147 // Log.e("SparseArray", "g
[all...]

Completed in 5 milliseconds