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

/frameworks/av/include/camera/
H A DCameraParameters2.h131 const ValueT& valueAt(size_t idx) const { function in struct:android::CameraParameters2::OrderedKeyedVector
139 return valueAt(i);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DUnmodifiableSparseArray.java49 public E valueAt(int index) { method in class:UnmodifiableSparseArray
50 return mArray.valueAt(index);
H A DUnmodifiableSparseIntArray.java49 public int valueAt(int index) { method in class:UnmodifiableSparseIntArray
50 return mArray.valueAt(index);
/frameworks/base/core/java/android/util/
H A DLongSparseLongArray.java40 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
43 * order in the case of <code>valueAt(int)</code>.</p>
180 * <code>valueAt(0)</code> will return the value associated with the
181 * smallest key and <code>valueAt(size()-1)</code> will return the value
184 public long valueAt(int index) { method in class:LongSparseLongArray
198 * Returns an index for which {@link #valueAt} would return the
255 long value = valueAt(i);
H A DSparseBooleanArray.java41 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
44 * order in the case of <code>valueAt(int)</code>.</p>
175 * <code>valueAt(0)</code> will return the value associated with the
176 * smallest key and <code>valueAt(size()-1)</code> will return the value
179 public boolean valueAt(int index) { method in class:SparseBooleanArray
198 * Returns an index for which {@link #valueAt} would return the
255 boolean value = valueAt(i);
H A DSparseIntArray.java40 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
43 * order in the case of <code>valueAt(int)</code>.</p>
178 * <code>valueAt(0)</code> will return the value associated with the
179 * smallest key and <code>valueAt(size()-1)</code> will return the value
182 public int valueAt(int index) { method in class:SparseIntArray
196 * Returns an index for which {@link #valueAt} would return the
253 int value = valueAt(i);
H A DSparseLongArray.java40 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
43 * order in the case of <code>valueAt(int)</code>.</p>
178 * <code>valueAt(0)</code> will return the value associated with the
179 * smallest key and <code>valueAt(size()-1)</code> will return the value
182 public long valueAt(int index) { method in class:SparseLongArray
196 * Returns an index for which {@link #valueAt} would return the
253 long value = valueAt(i);
H A DLongSparseArray.java47 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
50 * order in the case of <code>valueAt(int)</code>.</p>
250 * <code>valueAt(0)</code> will return the value associated with the
251 * smallest key and <code>valueAt(size()-1)</code> will return the value
255 public E valueAt(int index) { method in class:LongSparseArray
290 * Returns an index for which {@link #valueAt} would return the
365 Object value = valueAt(i);
H A DSparseArray.java47 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
50 * order in the case of <code>valueAt(int)</code>.</p>
263 * <code>valueAt(0)</code> will return the value associated with the
264 * smallest key and <code>valueAt(size()-1)</code> will return the value
268 public E valueAt(int index) { method in class:SparseArray
303 * Returns an index for which {@link #valueAt} would return the
380 Object value = valueAt(i);
H A DArrayMap.java396 public V valueAt(int index) { method in class:ArrayMap
561 put(array.keyAt(i), array.valueAt(i));
668 V mine = valueAt(i);
729 Object value = valueAt(i);
H A DArraySet.java312 public E valueAt(int index) { method in class:ArraySet
396 add(array.valueAt(i));
521 E mine = valueAt(i);
568 Object value = valueAt(i);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java208 public E valueAt(int index) { method in class:SparseWeakArray
243 * 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.java341 public V valueAt(int index) { method in class:SimpleArrayMap
439 put(array.keyAt(i), array.valueAt(i));
544 V mine = valueAt(i);
605 Object value = valueAt(i);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DPositionMap.java259 public E valueAt(int index) { method in class:PositionMap
294 * Returns an index for which {@link #valueAt} would return the
386 Object value = valueAt(i);

Completed in 1145 milliseconds