HomeSort by relevance Sort by last modified time
    Searched defs:keyAt (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /frameworks/av/include/camera/
CameraParameters2.h 127 const KeyT& keyAt(size_t idx) const {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseIntArray.java 44 public int keyAt( int index ){
45 return sparseArray.keyAt( index );
58 clone.put( keyAt(i), valueAt(i) );
ShadowSparseBooleanArray.java 45 public int keyAt(int index) {
46 return sparseArray.keyAt(index);
79 clone.put(keyAt(i), valueAt(i));
ShadowSparseArray.java 214 public int keyAt(int index) {
252 * Returns the index for which {@link #keyAt} would return the
  /frameworks/base/services/core/java/com/android/server/hdmi/
UnmodifiableSparseArray.java 45 public int keyAt(int index) {
46 return mArray.keyAt(index);
UnmodifiableSparseIntArray.java 45 public int keyAt(int index) {
46 return mArray.keyAt(index);
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
SparseIntArray.java 54 public int keyAt(final int index) {
55 return mArray.keyAt(index);
SparseArray.java 75 public int keyAt(final int index) {
  /frameworks/base/core/java/android/util/
LongSparseLongArray.java 40 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
41 * <code>keyAt(int)</code> with ascending values of the index will return the
165 * be in ascending order, e.g., <code>keyAt(0)</code> will return the
166 * smallest key and <code>keyAt(size()-1)</code> will return the largest
169 public long keyAt(int index) {
189 * Returns the index for which {@link #keyAt} would return the
252 long key = keyAt(i);
SparseBooleanArray.java 41 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
42 * <code>keyAt(int)</code> with ascending values of the index will return the
160 * be in ascending order, e.g., <code>keyAt(0)</code> will return the
161 * smallest key and <code>keyAt(size()-1)</code> will return the largest
164 public int keyAt(int index) {
189 * Returns the index for which {@link #keyAt} would return the
252 int key = keyAt(i);
SparseIntArray.java 40 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
41 * <code>keyAt(int)</code> with ascending values of the index will return the
163 * be in ascending order, e.g., <code>keyAt(0)</code> will return the
164 * smallest key and <code>keyAt(size()-1)</code> will return the largest
167 public int keyAt(int index) {
195 * Returns the index for which {@link #keyAt} would return the
258 int key = keyAt(i);
SparseLongArray.java 40 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
41 * <code>keyAt(int)</code> with ascending values of the index will return the
163 * be in ascending order, e.g., <code>keyAt(0)</code> will return the
164 * smallest key and <code>keyAt(size()-1)</code> will return the largest
167 public int keyAt(int index) {
187 * Returns the index for which {@link #keyAt} would return the
250 int key = keyAt(i);
LongSparseArray.java 47 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
48 * <code>keyAt(int)</code> with ascending values of the index will return the
231 * be in ascending order, e.g., <code>keyAt(0)</code> will return the
232 * smallest key and <code>keyAt(size()-1)</code> will return the largest
235 public long keyAt(int index) {
277 * Returns the index for which {@link #keyAt} would return the
362 long key = keyAt(i);
SparseArray.java 47 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
48 * <code>keyAt(int)</code> with ascending values of the index will return the
262 * be in ascending order, e.g., <code>keyAt(0)</code> will return the
263 * smallest key and <code>keyAt(size()-1)</code> will return the largest
266 public int keyAt(int index) {
308 * Returns the index for which {@link #keyAt} would return the
395 int key = keyAt(i);
ArrayMap.java 390 public K keyAt(int index) {
564 put(array.keyAt(i), array.valueAt(i));
670 K key = keyAt(i);
725 Object key = keyAt(i);
  /system/core/libpixelflinger/codeflinger/tinyutils/
KeyedVector.h 66 const KEY& keyAt(size_t index) const;
137 const KEY& KeyedVector<KEY,VALUE>::keyAt(size_t index) const {
  /external/smali/util/src/main/java/org/jf/util/
SparseArray.java 204 public int keyAt(int index) {
239 * Returns the index for which {@link #keyAt} would return the
SparseIntArray.java 170 public int keyAt(int index) {
184 * Returns the index for which {@link #keyAt} would return the
  /frameworks/base/services/core/java/com/android/server/pm/
PackageKeySetData.java 101 mKeySetAliases.put(newAliases.keyAt(i), newAliases.valueAt(i));;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 195 public long keyAt(int index) {
230 * Returns the index for which {@link #keyAt} would return the
  /packages/apps/Camera2/src/com/android/camera/app/
ModuleManagerImpl.java 84 modeIndexList.add(mRegisteredModuleAgents.keyAt(i));
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
SparseLongArray.java 147 public int keyAt(int index) {
161 * Returns the index for which {@link #keyAt} would return the
  /frameworks/support/v4/java/android/support/v4/util/
SimpleArrayMap.java 332 public K keyAt(int index) {
439 put(array.keyAt(i), array.valueAt(i));
543 K key = keyAt(i);
598 Object key = keyAt(i);
  /developers/samples/android/common/src/java/com/example/android/common/actionbarcompat/
MultiSelectionUtil.java 224 mListView.setItemChecked(checkedPositions.keyAt(i), false);
  /frameworks/base/core/java/android/bluetooth/le/
AdvertiseData.java 149 dest.writeInt(mManufacturerSpecificData.keyAt(i));

Completed in 640 milliseconds

1 2 3 4 5 6 7