/system/media/wilhelm/src/android/ |
AudioTrackProxy.h | 45 void mute(bool muted) 46 { mRaw->mute(muted); }
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
MediaPlayerProxy.h | 101 - (void)_setMuted:(BOOL)muted;
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
FullscreenVideoControllerEfl.h | 63 bool muted() const;
|
FullscreenVideoControllerEfl.cpp | 123 bool FullscreenVideoController::muted() const function in class:FullscreenVideoController
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieAudioTrack.java | 235 * @param muted true to mute the audio track
237 void setMute(boolean muted) {
238 mMuted = muted;
242 * @return true if the audio track is muted
249 * @param muted true to mute the audio track
251 public void setAppMute(boolean muted) {
252 mAppMuted = muted;
256 * @return true if the audio track is muted
|
MovieMediaItem.java | 261 * @param muted true to mute the media item 263 void setMute(boolean muted) { 264 mMuted = muted; 268 * @return true if the media item is muted 275 * @param muted true to mute the media item 277 public void setAppMute(boolean muted) { 278 mAppMuted = muted; 282 * @return true if the media item is muted
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
FullscreenVideoController.h | 65 bool muted() const;
|
FullscreenVideoController.cpp | 407 bool FullscreenVideoController::muted() const function in class:FullscreenVideoController 409 return m_mediaElement ? m_mediaElement->muted() : false; 433 gtk_scale_button_set_value(GTK_SCALE_BUTTON(m_volumeButton), muted() ? 0 : volume());
|
/frameworks/base/media/java/android/media/videoeditor/ |
AudioTrack.java | 110 * @param muted true if the audio track is muted 125 int volume, boolean muted,boolean duckingEnabled, 191 mMuted = muted; 302 * @param muted true to mute the audio track. SetMute(true) will make 305 public void setMute(boolean muted) { 310 mMuted = muted; 314 * Check if the audio track is muted 316 * @return true if the audio track is muted
|
MediaVideoItem.java | 102 * @param muted true if the audio is muted 108 int renderingMode, long beginMs, long endMs, int volumePercent, boolean muted, 186 mMuted = muted; 660 * @param muted true to mute the media item 662 public void setMute(boolean muted) { 664 mMuted = muted; 674 * @return true if the media item is muted
|
/external/webkit/Source/WebCore/html/ |
HTMLMediaElement.idl | 77 attribute boolean muted;
|
HTMLMediaElement.h | 144 bool muted() const;
|
HTMLMediaElement.cpp | 1552 bool HTMLMediaElement::muted() const function in class:WebCore::HTMLMediaElement [all...] |
/frameworks/base/include/media/ |
IAudioFlinger.h | 84 virtual status_t setMasterMute(bool muted) = 0; 93 virtual status_t setStreamMute(int stream, bool muted) = 0;
|
AudioTrack.h | 251 bool muted() const;
|
/packages/apps/Settings/src/com/android/settings/ |
RingerVolumePreference.java | 116 boolean muted = mAudioManager.isStreamMute(streamType); 119 if (streamType == AudioManager.STREAM_RING && muted 125 muted ? SEEKBAR_MUTED_RES_ID[i] : SEEKBAR_UNMUTED_RES_ID[i]); 129 mSeekBars[i].setEnabled(!muted); 130 final int volume = muted ? mAudioManager.getLastAudibleStreamVolume(streamType)
|
/external/webkit/Source/WebCore/platform/graphics/ |
MediaPlayer.cpp | 531 bool MediaPlayer::muted() const function in class:WebCore::MediaPlayer 536 void MediaPlayer::setMuted(bool muted) 538 m_muted = muted; 541 m_private->setMuted(muted); 543 m_private->setVolume(muted ? 0 : m_volume);
|
MediaPlayer.h | 235 bool muted() const;
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
MediaPlayerPrivateQt.cpp | 249 m_mediaPlayer->setMuted(element->muted()); 401 void MediaPlayerPrivateQt::setMuted(bool muted) 403 m_mediaPlayer->setMuted(muted); 475 void MediaPlayerPrivateQt::mutedChanged(bool muted) 477 m_webCorePlayer->muteChanged(muted);
|
MediaPlayerPrivatePhonon.cpp | 345 void MediaPlayerPrivatePhonon::setMuted(bool muted) 348 m_audioOutput->setMuted(muted);
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
call.h | 72 bool muted() const { return muted_; } function in class:cricket::Call
|
/frameworks/base/core/java/android/view/ |
VolumePanel.java | 353 final boolean muted = isMuted(sc.streamType); 354 sc.icon.setImageResource(muted ? sc.iconMuteRes : sc.iconRes); 355 if (sc.streamType == AudioManager.STREAM_RING && muted 359 sc.seekbarView.setEnabled(!muted);
|
/frameworks/base/telephony/java/com/android/internal/telephony/sip/ |
SipPhone.java | 306 public void setMute(boolean muted) { 308 foregroundCall.setMute(muted); 495 void setMute(boolean muted) { 497 ((SipConnection) c).setMute(muted); 763 void setMute(boolean muted) { 764 if ((mSipAudioCall != null) && (muted != mSipAudioCall.isMuted())) { [all...] |
/external/webkit/Source/WebCore/platform/graphics/gstreamer/ |
MediaPlayerPrivateGStreamer.cpp | [all...] |
/packages/apps/Phone/src/com/android/phone/ |
PhoneUtils.java | 1831 setMuteInternal(cm.getFgPhone(), muted); local [all...] |