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

/frameworks/base/core/java/android/util/
H A DLongArray.java27 public class LongArray implements Cloneable { class in inherits:Cloneable
34 * Creates an empty LongArray with the default initial capacity.
36 public LongArray() { method in class:LongArray
41 * Creates an empty LongArray with the specified initial capacity.
43 public LongArray(int initialCapacity) { method in class:LongArray
82 public void addAll(LongArray values) {
114 public LongArray clone() {
115 LongArray clone = null;
117 clone = (LongArray) super.clone();

Completed in 44 milliseconds