Lines Matching defs:key

232      * Flag indicating a RemoteControlClient makes use of the "previous" media key.
239 * Flag indicating a RemoteControlClient makes use of the "rewind" media key.
246 * Flag indicating a RemoteControlClient makes use of the "play" media key.
253 * Flag indicating a RemoteControlClient makes use of the "play/pause" media key.
260 * Flag indicating a RemoteControlClient makes use of the "pause" media key.
267 * Flag indicating a RemoteControlClient makes use of the "stop" media key.
274 * Flag indicating a RemoteControlClient makes use of the "fast forward" media key.
281 * Flag indicating a RemoteControlClient makes use of the "next" media key.
302 * {@link MediaMetadataEditor#RATING_KEY_BY_USER} key), it will enable the user to rate
409 * The metadata key for the content artwork / album art.
415 * TODO(jmtrivi) have lockscreen move to the new key name and remove
423 * @param key The identifier of a the metadata field to set. Valid values are
435 * @param value The text for the given key, or {@code null} to signify there is no valid
440 public synchronized MetadataEditor putString(int key, String value)
442 super.putString(key, value);
450 * @param key the identifier of a the metadata field to set. Valid values are
456 * @param value The long value for the given key
461 public synchronized MetadataEditor putLong(int key, long value)
463 super.putLong(key, value);
469 * @param key the identifier of the bitmap to set. The only valid value is
478 public synchronized MetadataEditor putBitmap(int key, Bitmap bitmap)
480 super.putBitmap(key, bitmap);
720 * Called on the implementer to notify that the metadata field for the given key has
722 * @param key the identifier of the updated metadata field.
723 * @param newValue the Object storing the new value for the key.
725 public abstract void onMetadataUpdate(int key, Object newValue);
862 * @param what a key to specify the type of information to set. Valid keys are
923 Log.w(TAG, "setPlaybackInformation() ignoring unknown key " + what);
932 * @param what a key to specify the type of information to retrieve. Valid keys are
956 Log.e(TAG, "getIntPlaybackInformation() unknown key " + what);
1187 public void updateMetadata(int generationId, int key, Rating value) {
1191 MSG_UPDATE_METADATA, generationId /* arg1 */, key /* arg2*/, value));
1496 //Log.d(TAG, "sending to AudioService key=" + what + ", value=" + value);
1661 private void onUpdateMetadata(int generationId, int key, Object value) {
1664 mMetadataUpdateListener.onMetadataUpdate(key, value);