HomeSort by relevance Sort by last modified time
    Searched defs:valueAt (Results 26 - 50 of 313) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/view/src/android/view/cts/surfacevalidator/
SurfacePixelValidator.java 151 testResult.failures.put(mFirstFailures.keyAt(i), mFirstFailures.valueAt(i));
  /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/core/java/android/util/
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
311 * Returns an index for which {@link #valueAt} would return the
395 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>
290 * <code>valueAt(0)</code> will return the value associated with the
291 * smallest key and <code>valueAt(size()-1)</code> will return the value
298 public E valueAt(int index) {
335 * Returns an index for which {@link #valueAt} would return the
359 * Returns an index for which {@link #valueAt} would return the
443 Object 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>
179 * <code>valueAt(0)</code> will return the value associated with the
180 * smallest key and <code>valueAt(size()-1)</code> will return the value
183 public boolean valueAt(int index) {
207 * Returns an index for which {@link #valueAt} would return the
299 boolean value = valueAt(i);
ArraySet.java 349 public E valueAt(int index) {
463 add(array.valueAt(i));
555 remove(array.valueAt(i));
611 E mine = valueAt(i);
658 Object value = valueAt(i);
ArrayMap.java 438 public V valueAt(int index) {
614 put(array.keyAt(i), array.valueAt(i));
732 V mine = valueAt(i);
793 Object value = valueAt(i);
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiUtils.java 230 list.add(array.valueAt(i));
  /frameworks/base/services/core/java/com/android/server/pm/
PackageKeySetData.java 101 mKeySetAliases.put(newAliases.keyAt(i), newAliases.valueAt(i));;
  /frameworks/base/services/core/java/com/android/server/wm/
UnknownAppVisibilityController.java 79 .append(" state=").append(mUnknownApps.valueAt(i));
141 if (mUnknownApps.valueAt(i) == UNKNOWN_STATE_WAITING_VISIBILITY_UPDATE) {
158 + " state=" + mUnknownApps.valueAt(i));
  /frameworks/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
  /frameworks/support/collection/src/main/java/androidx/collection/
LongSparseArray.java 264 public E valueAt(int index) {
299 * Returns an index for which {@link #valueAt} would return the
389 Object value = valueAt(i);
ArraySet.java 334 public E valueAt(int index) {
449 add(array.valueAt(i));
541 remove(array.valueAt(i));
599 E mine = valueAt(i);
646 Object value = valueAt(i);
SimpleArrayMap.java 376 public V valueAt(int index) {
485 put(array.keyAt(i), array.valueAt(i));
599 V mine = valueAt(i);
624 V mine = valueAt(i);
685 Object value = valueAt(i);
  /packages/apps/Camera2/src/com/android/camera/app/
ModuleManagerImpl.java 75 agents.add(mRegisteredModuleAgents.valueAt(i));
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batterytip/tips/
BatteryTipTest.java 84 orders.add(BatteryTip.TIP_ORDER.valueAt(i));
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
SparseLongArray.java 156 public long valueAt(int index) {
170 * Returns an index for which {@link #valueAt} would return the
  /packages/apps/Settings/src/com/android/settings/graph/
UsageGraph.java 143 paths.put(points.keyAt(i), points.valueAt(i));
186 int y = paths.valueAt(i);
204 int lastY = localPaths.valueAt(localPaths.size() - 1);
267 mPath.moveTo(localPaths.keyAt(0), localPaths.valueAt(0));
270 int y = localPaths.valueAt(i);
273 mPath.moveTo(localPaths.keyAt(i), localPaths.valueAt(i));
285 mPath.moveTo(localPaths.keyAt(0), localPaths.valueAt(0));
288 int y = localPaths.valueAt(i);
295 mPath.moveTo(localPaths.keyAt(i), localPaths.valueAt(i));
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseArray.java 228 public E valueAt(int index) {
266 * Returns an index for which {@link #valueAt} would return the
  /frameworks/base/core/java/android/app/usage/
UsageStats.java 188 ArrayMap<String, Integer> counts = right.mChooserCounts.valueAt(i);
196 int rightValue = counts.valueAt(j);
224 ArrayMap<String, Integer> counts = mChooserCounts.valueAt(i);
228 currentCounts.putInt(counts.keyAt(j), counts.valueAt(j));
  /frameworks/base/core/java/android/bluetooth/le/
AdvertiseData.java 151 dest.writeByteArray(mManufacturerSpecificData.valueAt(i));
  /frameworks/base/core/java/android/net/
NetworkFactory.java 251 NetworkRequestInfo n = mNetworkRequests.valueAt(i);
312 pw.println(mNetworkRequests.valueAt(i));
  /frameworks/base/core/java/android/os/health/
HealthStatsWriter.java 258 map.valueAt(i).flattenToParcel(out);
271 map.valueAt(i).writeToParcel(out, 0);
283 out.writeLong(map.valueAt(i));
  /frameworks/base/packages/ExtServices/src/android/ext/services/resolver/
LRResolverRankerService.java 146 sum += weight * target.valueAt(i);
162 LEARNING_RATE * error * target.valueAt(i);
176 editor.putFloat(mFeatureWeights.keyAt(i), mFeatureWeights.valueAt(i));

Completed in 532 milliseconds

12 3 4 5 6 7 8 91011>>