Home | History | Annotate | Download | only in util

Lines Matching defs:SparseArray

49 public class SparseArray<E> implements Cloneable {
58 * Creates a new SparseArray containing no mappings.
60 public SparseArray() {
65 * Creates a new SparseArray containing no mappings that will not
71 public SparseArray(int initialCapacity) {
85 public SparseArray<E> clone() {
86 SparseArray<E> clone = null;
88 clone = (SparseArray<E>) super.clone();
165 // Log.e("SparseArray", "gc start with " + mSize);
189 // Log.e("SparseArray", "gc end with " + mSize);
224 // Log.e("SparseArray", "grow " + mKeys.length + " to " + n);
233 // Log.e("SparseArray", "move " + (mSize - i));
245 * Returns the number of key-value mappings that this SparseArray
259 * SparseArray stores.
277 * SparseArray stores.
297 * SparseArray stores.
343 * Removes all key-value mappings from this SparseArray.
378 // Log.e("SparseArray", "grow " + mKeys.length + " to " + n);