/external/chromium_org/media/audio/ |
virtual_audio_output_stream.h | 43 virtual void SetVolume(double volume) OVERRIDE; 44 virtual void GetVolume(double* volume) OVERRIDE;
|
audio_logging.h | 44 // Called when an audio component changes volume. |volume| is the new volume. 45 virtual void OnSetVolume(int component_id, double volume) = 0;
|
audio_output_ipc.h | 85 // Sets the volume of the audio stream. 86 virtual void SetVolume(double volume) = 0;
|
audio_input_device.h | 93 virtual void SetVolume(double volume) OVERRIDE; 106 virtual void OnVolume(double volume) OVERRIDE; 126 void SetVolumeOnIOThread(double volume);
|
fake_audio_output_stream.cc | 56 void FakeAudioOutputStream::SetVolume(double volume) {}; 58 void FakeAudioOutputStream::GetVolume(double* volume) { 59 *volume = 0;
|
audio_output_dispatcher_impl.cc | 69 double volume = 0; local 70 stream_proxy->GetVolume(&volume); 71 physical_stream->SetVolume(volume); 73 audio_log_->OnSetVolume(stream_id, volume); 99 double volume) { 104 physical_stream->SetVolume(volume); 105 audio_log_->OnSetVolume(audio_stream_ids_[physical_stream], volume);
|
audio_input_device.cc | 99 void AudioInputDevice::SetVolume(double volume) { 100 if (volume < 0 || volume > 1.0) { 101 DLOG(ERROR) << "Invalid volume value specified"; 106 base::Bind(&AudioInputDevice::SetVolumeOnIOThread, this, volume)); 151 void AudioInputDevice::OnVolume(double volume) { 243 void AudioInputDevice::SetVolumeOnIOThread(double volume) { 246 ipc_->SetVolume(volume); 309 double volume = buffer->params.volume; [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebSpeechSynthesisUtterance.cpp | 79 float WebSpeechSynthesisUtterance::volume() const function in class:blink::WebSpeechSynthesisUtterance 81 return m_private->volume();
|
/frameworks/base/media/java/android/media/tv/ |
ITvInputHardware.aidl | 38 * Set volume for this stream via AudioGain. 40 void setStreamVolume(float volume);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/pulse/ |
scache.h | 62 * PA_VOLUME_NORM, // Full volume 104 pa_volume_t volume /**< Volume to play this sample with. Starting with 0.9.15 you may pass here PA_VOLUME_INVALID which will leave the decision about the volume to the server side which is a good idea. */ , 116 pa_volume_t volume /**< Volume to play this sample with. Starting with 0.9.15 you may pass here PA_VOLUME_INVALID which will leave the decision about the volume to the server side which is a good idea. */ ,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/ |
scache.h | 62 * PA_VOLUME_NORM, // Full volume 104 pa_volume_t volume /**< Volume to play this sample with. Starting with 0.9.15 you may pass here PA_VOLUME_INVALID which will leave the decision about the volume to the server side which is a good idea. */ , 116 pa_volume_t volume /**< Volume to play this sample with. Starting with 0.9.15 you may pass here PA_VOLUME_INVALID which will leave the decision about the volume to the server side which is a good idea. */ ,
|
/external/chromium_org/ui/file_manager/file_manager/foreground/css/ |
file_types.css | 348 /* Icons for volume types. */ 350 [volume-type-icon='archive'] { 357 list:focus li[selected] [volume-type-icon='archive'], 358 tree:focus .tree-item[selected] > .tree-row > [volume-type-icon='archive'] { 364 [volume-type-icon='downloads'] { 371 list:focus li[selected] [volume-type-icon='downloads'], 372 tree:focus .tree-item[selected] > .tree-row > [volume-type-icon='downloads'] { 378 [volume-type-icon='drive'] { 385 list:focus li[selected] [volume-type-icon='drive'], 386 tree:focus .tree-item[selected] > .tree-row > [volume-type-icon='drive'] [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/ |
common.js | 93 var volume = parseFloat(localStorage['volume']) || DEFAULT_VOLUME; 94 audio.volume = volume; 102 var duckedVolume = volume * (1.0 - 0.07 * (i + 1)); 103 audio.volume = duckedVolume; 126 var volume = parseFloat(localStorage['volume']) || DEFAULT_VOLUME; 133 volume: volume, [all...] |
/external/chromium_org/chrome/common/ |
tts_utterance_request.h | 21 float volume; member in struct:TtsUtteranceRequest
|
/external/chromium_org/content/public/browser/ |
speech_recognition_event_listener.h | 54 // a microphone volume indicator while recording. 55 // The value of |volume| and |noise_volume| is in the [0.0, 1.0] range. 59 float volume, float noise_volume) = 0;
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
remoteaudiosource.h | 57 virtual void SetVolume(double volume) OVERRIDE;
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_tcdata.h | 54 EAS_U8 volume; /* volume */ member in struct:__anon34699
|
/frameworks/av/services/audioflinger/ |
AudioResampler.h | 147 inline float clampFloatVol(float volume) { 148 if (volume > UNITY_GAIN_FLOAT) { 150 } else if (volume >= 0.) { 151 return volume; 153 return 0.; // NaN or negative volume maps to 0.
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/ |
background.js | 33 var volume = localStorage['volume'] || 1.0; 40 volume: parseFloat(volume),
|
/external/chromium_org/third_party/WebKit/Source/platform/speech/ |
PlatformSpeechSynthesisUtterance.h | 57 float volume() const { return m_volume; } function in class:WebCore::FINAL 58 void setVolume(float volume) { m_volume = std::max(std::min(1.0f, volume), 0.0f); }
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
dtmf_buffer.h | 25 int volume; member in struct:webrtc::DtmfEvent 33 volume(0), 40 volume(vol),
|
dtmf_buffer.cc | 29 // | event |E|R| volume | duration | 41 // - volume: For DTMF digits and other events representable as tones, this 44 // Thus, larger values denote lower volume. The buffer discards 69 event->volume = (payload[1] & 0x3F); 89 event.volume < 0 || event.volume > 36 || 137 event->volume = it->volume; 157 event->volume = it->volume; [all...] |
/frameworks/support/v4/java/android/support/v4/media/ |
VolumeProviderCompat.java | 23 * Handles requests to adjust or set the volume on a session. This is also used 24 * to push volume updates back to the session after a request has been handled. 25 * You can set a volume provider on a session by calling 30 * The volume is fixed and can not be modified. Requests to change volume 36 * The volume control uses relative adjustment via 37 * {@link #onAdjustVolume(int)}. Attempts to set the volume to a specific 43 * The volume control uses an absolute value. It may be adjusted using 57 * Create a new volume provider for handling volume events. You must specif [all...] |
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
RemoteControlClientCompat.java | 61 * Sets a callback to receive volume change requests from the remote control client. 63 * @param callback The volume callback to use or null if none. 73 public int volume; field in class:RemoteControlClientCompat.PlaybackInfo 81 * Called when volume updates are requested by the remote control client. 85 * Called when the volume should be increased or decreased. 87 * @param direction An integer indicating whether the volume is to be increased 90 * in the same direction, e.g. +3 corresponds to three "volume up" changes. 95 * Called when the volume for the route should be set to the given value. 97 * @param volume An integer indicating the new volume value that should be used [all...] |
/external/chromium_org/ui/file_manager/file_manager/foreground/js/media/ |
player_testapi.js | 90 * Respond with a number, current volume [0..100]. 93 playerTestAPI.respond_(playerTestAPI.getMedia_().volume * 100); 97 * Change volume. 98 * @param {number} volume Volume [0..100]. 100 setVolume: function(volume) { 102 playerTestAPI.getControls_().onVolumeChange_(volume / 100)); 106 * Respond with a boolean, true if the volume is muted. 109 playerTestAPI.respond_(playerTestAPI.getMedia_().volume == 0); 113 * Mute the volume. No-op if already muted [all...] |