/external/chromium_org/chrome/browser/extensions/api/audio/ |
audio_api.cc | 92 int volume_value = params->properties.volume.get() ? 93 *params->properties.volume : -1;
|
/external/chromium_org/chrome/browser/extensions/api/system_private/ |
system_private_api.cc | 39 const char kVolumeKey[] = "volume"; 141 void DispatchVolumeChangedEvent(double volume, bool is_volume_muted) { 143 dict->SetDouble(kVolumeKey, volume);
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/ |
ttsdemo.js | 64 var volumeValue = Number(volume.value); 66 options.volume = volumeValue;
|
/external/chromium_org/media/audio/ |
audio_output_controller.h | 135 // Sets the volume of the audio output stream. 136 void SetVolume(double volume); 204 void DoSetVolume(double volume); 245 // The current volume of the audio stream.
|
/external/chromium_org/media/audio/mac/ |
audio_synchronized_mac.h | 79 virtual void SetVolume(double volume) OVERRIDE; 80 virtual void GetVolume(double* volume) OVERRIDE;
|
/external/chromium_org/media/audio/win/ |
audio_low_latency_input_win.cc | 200 // The effective volume value is always in the range 0.0 to 1.0, hence 205 void WASAPIAudioInputStream::SetVolume(double volume) { 206 DVLOG(1) << "SetVolume(volume=" << volume << ")"; 208 DCHECK_GE(volume, 0.0); 209 DCHECK_LE(volume, 1.0); 215 // Set a new master volume level. Valid volume levels are in the range 216 // 0.0 to 1.0. Ignore volume-change events. 217 HRESULT hr = simple_audio_volume_->SetMasterVolume(static_cast<float>(volume), 335 double volume = GetVolume(); local [all...] |
audio_unified_win.h | 99 virtual void SetVolume(double volume) OVERRIDE; 100 virtual void GetVolume(double* volume) OVERRIDE; 211 // Volume level from 0 to 1 used for output scaling.
|
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
BoundingVolume.java | 53 * The type of bounding volume being used.
105 * getType returns the type of bounding volume this is.
111 * <code>transform</code> alters the location of the bounding volume by a
116 * @return the new bounding volume.
124 * <code>transform</code> alters the location of the bounding volume by a
131 * @return the new bounding volume.
139 * <code>whichSide</code> returns the side on which the bounding volume
144 * the plane to check against this bounding volume.
145 * @return the side on which this bounding volume lies.
151 * <code>computeFromPoints</code> generates a bounding volume that [all...] |
/frameworks/base/core/java/android/speech/tts/ |
SynthesisPlaybackQueueItem.java | 68 float volume, float pan, UtteranceProgressDispatcher dispatcher, 79 channelCount, volume, pan);
|
/frameworks/base/core/jni/ |
android_media_ToneGenerator.cpp | 89 jint streamType, jint volume) { 90 ToneGenerator *lpToneGen = new ToneGenerator((audio_stream_type_t) streamType, AudioSystem::linearToLog(volume), true);
|
/hardware/libhardware/include/hardware/ |
bt_hf.h | 95 typedef void (* bthf_volume_cmd_callback)(bthf_volume_type_t type, int volume); 236 /** volume control */ 237 bt_status_t (*volume_control) (bthf_volume_type_t type, int volume);
|
/hardware/libhardware_legacy/audio/ |
A2dpAudioInterface.h | 40 virtual status_t setVoiceVolume(float volume); 41 virtual status_t setMasterVolume(float volume);
|
AudioHardwareStub.h | 71 virtual status_t setVoiceVolume(float volume); 72 virtual status_t setMasterVolume(float volume);
|
/hardware/qcom/msm8960/original-kernel-headers/linux/mfd/ |
msm-adie-codec.h | 121 u32 volume); 143 u32 num_channels, u32 volume /* in percentage */);
|
/hardware/qcom/msm8x74/original-kernel-headers/linux/mfd/ |
msm-adie-codec.h | 121 u32 volume); 143 u32 num_channels, u32 volume /* in percentage */);
|
/development/ndk/platforms/android-3/include/linux/ |
msm_audio.h | 70 uint32_t volume; member in struct:msm_snd_volume_config
|
/external/chromium/chrome/browser/speech/ |
speech_input_bubble.cc | 42 SkBitmap* mic_full_; // Mic image with full volume. 43 SkBitmap* mic_noise_; // Mic image with full noise volume. 44 SkBitmap* mic_empty_; // Mic image with zero volume. 45 SkBitmap* mic_mask_; // Gradient mask used by the volume indicator. 196 float volume) { 206 (((1.0f - volume) * (width * (kVolumeSteps + 1))) - width) / kVolumeSteps; 219 void SpeechInputBubbleBase::SetInputVolume(float volume, float noise_volume) { 223 // Draw the empty volume image first and the current volume image on top, 224 // and then the noise volume image on top of both [all...] |
/external/chromium_org/chrome/browser/speech/ |
chrome_speech_recognition_manager_delegate.h | 38 virtual void OnAudioLevelsChange(int session_id, float volume,
|
/external/chromium_org/content/browser/renderer_host/media/ |
audio_renderer_host.h | 127 // Set the volume of the audio stream referenced by |stream_id|. 128 void OnSetVolume(int stream_id, double volume);
|
/external/chromium_org/content/browser/speech/ |
input_tag_speech_dispatcher_host.h | 53 float volume,
|
speech_recognition_dispatcher_host.h | 52 float volume,
|
/external/chromium_org/content/renderer/media/ |
audio_input_message_filter.h | 73 // Notification of volume property of an audio input stream. 74 void OnStreamVolume(int stream_id, double volume);
|
webaudiosourceprovider_impl.h | 48 virtual bool SetVolume(double volume) OVERRIDE;
|
webrtc_audio_renderer.h | 63 virtual void SetVolume(float volume) OVERRIDE;
|
webrtc_local_audio_renderer.cc | 241 void WebRtcLocalAudioRenderer::SetVolume(float volume) { 242 DVLOG(1) << "WebRtcLocalAudioRenderer::SetVolume(" << volume << ")"; 247 // Cache the volume. 248 volume_ = volume; 256 sink_->SetVolume(volume);
|