HomeSort by relevance Sort by last modified time
    Searched defs:keys (Results 201 - 225 of 1239) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/media/java/android/media/
MediaMetadataEditor.java 42 // Public keys for metadata used by RemoteControlClient and RemoteController.
43 // Note that these keys are defined here, and not in MediaMetadataRetriever
83 * Mask of editable keys.
120 * Note that clearing the metadata doesn't reset the editable keys
143 Log.e(TAG, "Can't change editable keys of a previously applied MetadataEditor");
147 // of editable keys to check the validity of the key, just hardcode the supported key.
161 Log.e(TAG, "Can't remove all editable keys of a previously applied MetadataEditor");
171 * Retrieves the keys flagged as editable.
172 * @return null if there are no editable keys, or an array containing the keys
177 int[] keys = { RATING_KEY_BY_USER }; local
    [all...]
MediaMuxer.java 103 long nativeObject, @NonNull String[] keys, @NonNull Object[] values);
282 String[] keys = null; local
286 keys = new String[mapSize];
290 keys[i] = entry.getKey();
294 trackIndex = nativeAddTrack(mNativeObject, keys, values);
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 510 String[][] keys = new String[gMaps.size()][]; local
514 keys[i] = new String[map.size()];
517 keys[i][j++] = key;
522 return keys;
  /frameworks/support/v13/java/android/support/v13/app/
FragmentStatePagerAdapter.java 211 Iterable<String> keys = bundle.keySet(); local
212 for (String key: keys) {
  /frameworks/support/v4/java/android/support/v4/app/
FragmentStatePagerAdapter.java 207 Iterable<String> keys = bundle.keySet(); local
208 for (String key: keys) {
  /frameworks/support/v4/java/android/support/v4/util/
LongSparseArray.java 25 * auto-boxing keys and its data structure doesn't rely on an extra entry object
29 * using a binary search to find keys. The implementation is not intended to be appropriate for
37 * keys: instead of compacting its array immediately, it leaves the removed entry marked
150 long[] keys = mKeys; local
158 keys[o] = keys[i];
292 * specified key, or a negative number if no keys map to the
295 * and that multiple keys can map to the same value and this will
327 * the key is greater than all existing keys in the array.
SparseArrayCompat.java 143 int[] keys = mKeys; local
151 keys[o] = keys[i];
285 * specified key, or a negative number if no keys map to the
288 * and that multiple keys can map to the same value and this will
322 * the key is greater than all existing keys in the array.
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
PositionMap.java 153 int[] keys = mKeys; local
161 keys[o] = keys[i];
295 * specified key, or a negative number if no keys map to the
298 * and that multiple keys can map to the same value and this will
332 * the key is greater than all existing keys in the array.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
WeakHashMapTest.java 185 List keys = Arrays.asList(keyArray); local
193 assertTrue("Invalid map entry returned--bad key", keys
198 keys = null;
300 List keys = Arrays.asList(keyArray); local
304 assertEquals("Incorrect number of keys returned,", 100, keySet.size());
308 assertTrue("Invalid map entry returned--bad key", keys
311 keys = null;
323 assertEquals("Incorrect number of keys returned after gc,", 99, keySet
377 List keys = Arrays.asList(keyArray); local
381 assertEquals("Incorrect number of keys returned,", 100
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
MockAbstractPreferences.java 150 Set<Object> keys = attr.keySet(); local
151 String[] results = new String[keys.size()];
152 keys.toArray(results);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
X509KeyManagerTest.java 32 private PrivateKey[] keys; field in class:X509KeyManagerTest
    [all...]
  /libcore/luni/src/main/java/java/security/
Security.java 295 Set<Entry<String, String>> keys = filter.entrySet(); local
297 for (Iterator<Entry<String, String>> it = keys.iterator(); it.hasNext();) {
  /libcore/luni/src/main/java/java/util/
EnumMap.java 26 * An {@code Map} specialized for use with {@code Enum} types as keys.
39 transient K[] keys; field in class:EnumMap
85 return (enumMap.keys[ordinal] == null ? 0 : enumMap.keys[ordinal].hashCode())
93 return enumMap.keys[ordinal];
105 return enumMap.put(enumMap.keys[ordinal], value);
110 StringBuilder result = new StringBuilder(enumMap.keys[ordinal].toString());
153 return type.get(new MapEntry<KT, VT>(enumMap.keys[prePosition],
160 enumMap.remove(enumMap.keys[prePosition]);
171 new MapEntry<KT, VT>(enumMap.keys[prePosition]
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
Preferences.java 465 * Returns all preference keys stored in this node or an empty array if no
468 * @return the list of all preference keys of this node.
475 public abstract String[] keys() throws BackingStoreException; method in class:Preferences
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyPairGenerator1Test.java 349 int[] keys = { -10000, -1024, -1, 0, 10000 }; local
357 for (int j = 0; j < keys.length; j++) {
359 kpg[i].initialize(keys[j]);
360 kpg[i].initialize(keys[j], random);
386 int[] keys = { -1, -250, 1, 64, 512, 1024 }; local
396 for (int i = 0; i < keys.length; i++) {
398 mKPG.initialize(keys[i]);
400 + Integer.toString(keys[i]) + ")");
404 mKPG.initialize(keys[i], random);
406 + Integer.toString(keys[i]) + ")")
462 int[] keys = { -1, -250, 1, 63, -512, -1024 }; local
    [all...]
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
QuickSettingsPreferenceFragment.java 142 final List<String> keys = local
144 final int pos = keys.indexOf(key);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyboardBuilder.java 68 private static ExpectedKey[] replaceKeyAt(final ExpectedKey[] keys, final int columnIndex,
72 keys[columnIndex] = replacingKeys[0];
73 return keys;
75 final int newLength = keys.length - 1 + replacingKeys.length;
77 final ExpectedKey[] newKeys = Arrays.copyOf(keys, newLength);
78 System.arraycopy(keys, columnIndex + 1, newKeys, columnIndex + replacingKeys.length,
79 keys.length - 1 - columnIndex);
80 // Insert replacing keys at columnIndex.
91 ExpectedKey[] keys = getRowAt(row); local
92 for (int columnIndex = 0; columnIndex < keys.length; /* nothing */)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ConfigParser.py 29 keys must be strings, the values must be appropriate for %()s string
251 return self._sections.keys()
283 return opts.keys()
578 def keys(self): member in class:_Chainmap
597 optional argument `raw' is true. Values for interpolation keys are
647 options = d.keys()
collections.py 28 # An inherited dict maps keys to values.
33 # The internal self.__map dict maps keys to links in a doubly linked list.
100 def keys(self): member in class:OrderedDict
101 'od.keys() -> list of keys in od'
113 'od.iterkeys() -> an iterator over the keys in od'
193 '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S.
218 "od.viewkeys() -> a set-like object providing a view on od's keys"
266 raise ValueError('Got unexpected field names: %r' % kwds.keys())
383 or multiset. Elements are stored as dictionary keys and their count
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 117 # since we're only returning keys, we call the cursor
301 def keys(self): member in class:_DBWithCursor
303 return _DeadlockWrap(self.db.keys)
dbshelve.py 164 def keys(self, txn=None): member in class:DBShelf
166 return self.db.keys(txn)
168 return self.db.keys()
171 def __iter__(self) : # XXX: Load all keys in memory :-(
172 for k in self.db.keys() :
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
message.py 326 def keys(self):
545 Parameter keys are always compared case insensitively. The return
324 def keys(self): member in class:Message
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
RemoteDebugger.py 165 return dict.keys()
263 def keys(self): member in class:DictProxy
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 35 def keys(self): member in class:CanvasItem
45 return key in self.keys()
47 return key in self.keys()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
ic.py 173 def keys(self): member in class:IC
262 for k in ic.keys():

Completed in 737 milliseconds

1 2 3 4 5 6 7 891011>>