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

/frameworks/base/core/java/android/util/
H A DLongSparseLongArray.java39 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
42 * order in the case of <code>valueAt(int)<code>.</p>
189 * <code>valueAt(0)</code> will return the value associated with the
190 * smallest key and <code>valueAt(size()-1)</code> will return the value
193 public long valueAt(int index) { method in class:LongSparseLongArray
207 * Returns an index for which {@link #valueAt} would return the
282 long value = valueAt(i);
H A DSparseBooleanArray.java38 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
41 * order in the case of <code>valueAt(int)<code>.</p>
186 * <code>valueAt(0)</code> will return the value associated with the
187 * smallest key and <code>valueAt(size()-1)</code> will return the value
190 public boolean valueAt(int index) { method in class:SparseBooleanArray
204 * Returns an index for which {@link #valueAt} would return the
276 boolean value = valueAt(i);
H A DSparseIntArray.java37 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
40 * order in the case of <code>valueAt(int)<code>.</p>
196 * <code>valueAt(0)</code> will return the value associated with the
197 * smallest key and <code>valueAt(size()-1)</code> will return the value
200 public int valueAt(int index) { method in class:SparseIntArray
214 * Returns an index for which {@link #valueAt} would return the
286 int value = valueAt(i);
H A DSparseLongArray.java37 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
40 * order in the case of <code>valueAt(int)<code>.</p>
185 * <code>valueAt(0)</code> will return the value associated with the
186 * smallest key and <code>valueAt(size()-1)</code> will return the value
189 public long valueAt(int index) { method in class:SparseLongArray
203 * Returns an index for which {@link #valueAt} would return the
278 long value = valueAt(i);
H A DLongSparseArray.java44 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
47 * order in the case of <code>valueAt(int)<code>.</p>
268 * <code>valueAt(0)</code> will return the value associated with the
269 * smallest key and <code>valueAt(size()-1)</code> will return the value
273 public E valueAt(int index) { method in class:LongSparseArray
308 * Returns an index for which {@link #valueAt} would return the
398 Object value = valueAt(i);
H A DSparseArray.java44 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
47 * order in the case of <code>valueAt(int)<code>.</p>
281 * <code>valueAt(0)</code> will return the value associated with the
282 * smallest key and <code>valueAt(size()-1)</code> will return the value
286 public E valueAt(int index) { method in class:SparseArray
321 * Returns an index for which {@link #valueAt} would return the
413 Object value = valueAt(i);
H A DArrayMap.java384 public V valueAt(int index) { method in class:ArrayMap
511 put(array.keyAt(i), array.valueAt(i));
618 V mine = valueAt(i);
679 Object value = valueAt(i);
H A DArraySet.java300 public E valueAt(int index) { method in class:ArraySet
384 add(array.valueAt(i));
509 E mine = valueAt(i);
556 Object value = valueAt(i);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java240 public E valueAt(int index) { method in class:SparseWeakArray
275 * Returns an index for which {@link #valueAt} would return the
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java256 public E valueAt(int index) { method in class:LongSparseArray
291 * Returns an index for which {@link #valueAt} would return the
381 Object value = valueAt(i);
H A DSparseArrayCompat.java249 public E valueAt(int index) { method in class:SparseArrayCompat
284 * Returns an index for which {@link #valueAt} would return the
376 Object value = valueAt(i);
H A DSimpleArrayMap.java331 public V valueAt(int index) { method in class:SimpleArrayMap
429 put(array.keyAt(i), array.valueAt(i));
534 V mine = valueAt(i);
595 Object value = valueAt(i);

Completed in 2055 milliseconds