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

/frameworks/base/core/java/android/util/
H A DSparseIntArray.java47 public class SparseIntArray implements Cloneable { class in inherits:Cloneable
53 * Creates a new SparseIntArray containing no mappings.
55 public SparseIntArray() { method in class:SparseIntArray
60 * Creates a new SparseIntArray containing no mappings that will not
66 public SparseIntArray(int initialCapacity) { method in class:SparseIntArray
78 public SparseIntArray clone() {
79 SparseIntArray clone = null;
81 clone = (SparseIntArray) super.clone();
152 * Returns the number of key-value mappings that this SparseIntArray
162 * SparseIntArray store
[all...]

Completed in 1624 milliseconds