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

/frameworks/base/core/java/android/util/
H A DSparseIntArray.java45 public class SparseIntArray implements Cloneable { class in inherits:Cloneable
51 * Creates a new SparseIntArray containing no mappings.
53 public SparseIntArray() { method in class:SparseIntArray
58 * Creates a new SparseIntArray containing no mappings that will not
64 public SparseIntArray(int initialCapacity) { method in class:SparseIntArray
76 public SparseIntArray clone() {
77 SparseIntArray clone = null;
79 clone = (SparseIntArray) super.clone();
150 * Returns the number of key-value mappings that this SparseIntArray
160 * SparseIntArray store
[all...]

Completed in 184 milliseconds