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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterArrayParameter.h 47 double valueAt(unsigned index) const { return m_data.at(index); }
63 result->addValue(WebCore::blend(fromArray->valueAt(i), valueAt(i), progress));
CustomFilterNumberParameter.h 47 double valueAt(unsigned index) const { return m_data.at(index); }
60 result->addValue(WebCore::blend(fromNumber->valueAt(i), valueAt(i), progress));
  /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));
ShadowSparseArray.java 228 public E valueAt(int index) {
266 * Returns an index for which {@link #valueAt} would return the
  /frameworks/base/core/java/android/util/
SparseBooleanArray.java 38 * {@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) {
204 * Returns an index for which {@link #valueAt} would return the
276 boolean value = valueAt(i);
ArraySet.java 300 public E valueAt(int index) {
384 add(array.valueAt(i));
509 E mine = valueAt(i);
556 Object value = valueAt(i);
LongSparseArray.java 44 * {@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) {
308 * Returns an index for which {@link #valueAt} would return the
398 Object value = valueAt(i);
LongSparseLongArray.java 39 * {@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) {
207 * Returns an index for which {@link #valueAt} would return the
282 long value = valueAt(i);
SparseIntArray.java 37 * {@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) {
214 * Returns an index for which {@link #valueAt} would return the
286 int value = valueAt(i);
SparseLongArray.java 37 * {@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) {
203 * Returns an index for which {@link #valueAt} would return the
278 long value = valueAt(i);
ArrayMap.java 384 public V valueAt(int index) {
511 put(array.keyAt(i), array.valueAt(i));
618 V mine = valueAt(i);
679 Object value = valueAt(i);
SparseArray.java 44 * {@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) {
321 * Returns an index for which {@link #valueAt} would return the
413 Object value = valueAt(i);
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
SparseArray.java 81 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;
  /frameworks/support/v4/java/android/support/v4/util/
SimpleArrayMap.java 331 public V valueAt(int index) {
429 put(array.keyAt(i), array.valueAt(i));
534 V mine = valueAt(i);
595 Object value = valueAt(i);
LongSparseArray.java 256 public E valueAt(int index) {
291 * Returns an index for which {@link #valueAt} would return the
381 Object value = valueAt(i);
SparseArrayCompat.java 249 public E valueAt(int index) {
284 * Returns an index for which {@link #valueAt} would return the
376 Object value = valueAt(i);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
SparseArray.java 210 public E valueAt(int index) {
245 * Returns an index for which {@link #valueAt} would return the
SparseIntArray.java 172 public int valueAt(int index) {
186 * Returns an index for which {@link #valueAt} would return the
  /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
  /frameworks/base/services/java/com/android/server/am/
ProcessRecord.java 324 pw.print(prefix); pw.print(" - "); pw.println(services.valueAt(i));
331 pw.print(prefix); pw.print(" - "); pw.println(executingServices.valueAt(i));
337 pw.print(prefix); pw.print(" - "); pw.println(connections.valueAt(i));
344 pw.print(prefix); pw.print(" -> "); pw.println(pubProviders.valueAt(i));
359 pw.print(prefix); pw.print(" - "); pw.println(receivers.valueAt(i));
399 ProcessStats.ProcessState ps = pkgList.valueAt(i);
424 ProcessStats.ProcessState ps = pkgList.valueAt(i);
466 ConnectionRecord cr = connections.valueAt(i);
615 ProcessStats.ProcessState ps = pkgList.valueAt(i);
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
BrailleInputEvent.java 180 NAMES_TO_CMDS.put(CMD_NAMES.valueAt(i),
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 240 public E valueAt(int index) {
275 * Returns an index for which {@link #valueAt} would return the
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
AdnRecordCache.java 80 ArrayList<Message> waiters = mAdnLikeWaiters.valueAt(i);
90 sendErrorResponse(mUserWriteResponse.valueAt(i), "AdnCace reset");

Completed in 237 milliseconds

1 2 3 4