Searched refs:audioAttributes (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeechService.java703 AudioAttributes audioAttributes) {
707 mAudioAttributes = audioAttributes;
717 AudioAttributes audioAttributes =
720 if (audioAttributes == null) {
723 audioAttributes = (new AudioAttributes.Builder())
741 audioAttributes);
702 AudioOutputParams(int sessionId, float volume, float pan, AudioAttributes audioAttributes) argument
H A DTextToSpeech.java545 public static final String KEY_PARAM_AUDIO_ATTRIBUTES = "audioAttributes";
1402 * @param audioAttributes Valid AudioAttributes instance.
1406 public int setAudioAttributes(AudioAttributes audioAttributes) { argument
1407 if (audioAttributes != null) {
1410 audioAttributes);
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java214 pw.println(prefix + " audioAttributes=" + notification.audioAttributes);
429 final AudioAttributes attributes = getNotification().audioAttributes;
H A DNotificationManagerService.java2887 AudioAttributes audioAttributes = audioAttributesForNotification(notification);
2892 AudioAttributes.toLegacyStreamType(audioAttributes)) != 0)
2900 + " with attributes " + audioAttributes);
2902 audioAttributes);
2980 if (n.audioAttributes != null
2981 && !Notification.AUDIO_ATTRIBUTES_DEFAULT.equals(n.audioAttributes)) {
2983 return n.audioAttributes;
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java860 * @param audioAttributes the {@link AudioAttributes} to be used by the media player.
866 AudioAttributes audioAttributes, int audioSessionId) {
870 final AudioAttributes aa = audioAttributes != null ? audioAttributes :
923 * @param audioAttributes the {@link AudioAttributes} to be used by the media player.
929 AudioAttributes audioAttributes, int audioSessionId) {
936 final AudioAttributes aa = audioAttributes != null ? audioAttributes :
865 create(Context context, Uri uri, SurfaceHolder holder, AudioAttributes audioAttributes, int audioSessionId) argument
928 create(Context context, int resid, AudioAttributes audioAttributes, int audioSessionId) argument
/frameworks/base/core/java/android/app/
H A DNotification.java346 * @deprecated Use {@link #audioAttributes} instead.
356 * @deprecated Use {@link #audioAttributes} instead.
362 * The default value of {@link #audioAttributes}.
372 public AudioAttributes audioAttributes = AUDIO_ATTRIBUTES_DEFAULT; field in class:Notification
1641 audioAttributes = AudioAttributes.CREATOR.createFromParcel(parcel);
1720 if (this.audioAttributes != null) {
1721 that.audioAttributes = new AudioAttributes.Builder(this.audioAttributes).build();
1977 if (audioAttributes != null) {
1979 audioAttributes
2812 setSound(Uri sound, AudioAttributes audioAttributes) argument
[all...]

Completed in 191 milliseconds