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

1 2 3 4 5 6 7 8

  /frameworks/av/include/camera/
CameraParameters2.h 131 const ValueT& valueAt(size_t idx) const {
139 return valueAt(i);
  /packages/apps/Camera2/src/com/android/camera/ui/motion/
UnitCurve.java 32 float valueAt(float t);
35 * If possible, find a value for t such that valueAt(t) == value or best guess.
37 * @param value to match to the output of valueAt(t)
38 * @return t where valueAt(t) == value or throw.
UnitBezier.java 58 public float valueAt(float t) {
64 * valueAt(result) produces the input value.
68 * to the valueAt function.
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseIntArray.java 49 public int valueAt( int index ){
50 return sparseArray.valueAt( index );
58 clone.put( keyAt(i), valueAt(i) );
ShadowSparseBooleanArray.java 50 public boolean valueAt(int index) {
51 return sparseArray.valueAt(index);
79 clone.put(keyAt(i), valueAt(i));
  /frameworks/base/services/core/java/com/android/server/hdmi/
UnmodifiableSparseArray.java 49 public E valueAt(int index) {
50 return mArray.valueAt(index);
UnmodifiableSparseIntArray.java 49 public int valueAt(int index) {
50 return mArray.valueAt(index);
HdmiUtils.java 204 list.add(array.valueAt(i));
  /frameworks/base/core/java/com/android/internal/os/
KernelUidCpuTimeReader.java 93 userTimeDeltaUs -= mLastUserTimeUs.valueAt(index);
94 systemTimeDeltaUs -= mLastSystemTimeUs.valueAt(index);
95 powerDeltaMaUs -= mLastPowerMaUs.valueAt(index);
105 TimeUtils.formatDuration(mLastUserTimeUs.valueAt(index) / 1000, sb);
107 TimeUtils.formatDuration(mLastSystemTimeUs.valueAt(index) / 1000, sb);
108 sb.append(" p=").append(mLastPowerMaUs.valueAt(index) / 1000);
  /frameworks/base/services/core/java/com/android/server/pm/
KeySetManagerService.java 202 if (!(definedMapping.valueAt(i).size() > 0)
203 || definedMapping.valueAt(i).contains(null)) {
268 KeySetHandle value = mKeySets.valueAt(keySetIndex);
289 ArraySet<PublicKey> pubKeys = definedMapping.valueAt(i);
299 decrementKeySetLPw(prevDefinedKeySets.valueAt(i));
317 pkg.keySetData.addUpgradeKeySet(upgradeAliases.valueAt(i));
359 mPubKeys.add(mPublicKeys.get(pkIds.valueAt(i)).getKey());
404 long id = addPublicKeyLPw(keys.valueAt(i));
414 decrementPublicKeyLPw(addedKeyIds.valueAt(i));
446 decrementPublicKeyLPw(pubKeys.valueAt(i))
    [all...]
IntentFilterVerificationState.java 99 sb.append(mHosts.valueAt(i));
PackageKeySetData.java 101 mKeySetAliases.put(newAliases.keyAt(i), newAliases.valueAt(i));;
  /frameworks/base/core/java/android/util/
LongSparseLongArray.java 40 * {@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) {
198 * Returns an index for which {@link #valueAt} would return the
255 long value = valueAt(i);
SparseBooleanArray.java 41 * {@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) {
198 * Returns an index for which {@link #valueAt} would return the
255 boolean value = valueAt(i);
SparseIntArray.java 40 * {@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) {
204 * Returns an index for which {@link #valueAt} would return the
261 int value = valueAt(i);
SparseLongArray.java 40 * {@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) {
196 * Returns an index for which {@link #valueAt} would return the
253 long value = valueAt(i);
ArraySet.java 317 public E valueAt(int index) {
401 add(array.valueAt(i));
490 remove(array.valueAt(i));
546 E mine = valueAt(i);
593 Object value = valueAt(i);
LongSparseArray.java 47 * {@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) {
290 * Returns an index for which {@link #valueAt} would return the
365 Object value = valueAt(i);
SparseArray.java 47 * {@link #keyAt(int)} and {@link #valueAt(int)}. Iterating over the keys using
50 * 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) {
321 * Returns an index for which {@link #valueAt} would return the
398 Object value = valueAt(i);
  /packages/apps/Camera2/src/com/android/camera/burst/
RingBuffer.java 76 allImages.add(mImages.valueAt(i));
88 mImages.valueAt(i).close();
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
SparseArray.java 79 public E valueAt(final int index) {
  /system/core/libpixelflinger/codeflinger/tinyutils/
KeyedVector.h 65 const VALUE& valueAt(size_t index) const;
132 const VALUE& KeyedVector<KEY,VALUE>::valueAt(size_t index) const {
195 return i >= 0 ? KeyedVector<KEY,VALUE>::valueAt(i) : mDefault;
  /external/smali/util/src/main/java/org/jf/util/
SparseArray.java 217 public E valueAt(int index) {
252 * Returns an index for which {@link #valueAt} would return the
SparseIntArray.java 179 public int valueAt(int index) {
193 * Returns an index for which {@link #valueAt} would return the
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 208 public E valueAt(int index) {
243 * Returns an index for which {@link #valueAt} would return the

Completed in 1597 milliseconds

1 2 3 4 5 6 7 8