HomeSort by relevance Sort by last modified time
    Searched refs:volume (Results 26 - 50 of 448) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisUtterance.h 55 float volume() const { return m_platformUtterance->volume(); } function in class:blink::FINAL
56 void setVolume(float volume) { m_platformUtterance->setVolume(volume); }
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_mixer_manager_alsa_linux.h 29 int32_t SetSpeakerVolume(uint32_t volume);
30 int32_t SpeakerVolume(uint32_t& volume) const;
45 int32_t SetMicrophoneVolume(uint32_t volume);
46 int32_t MicrophoneVolume(uint32_t& volume) const;
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.h 27 int32_t SetSpeakerVolume(uint32_t volume);
28 int32_t SpeakerVolume(uint32_t& volume) const;
45 int32_t SetMicrophoneVolume(uint32_t volume);
46 int32_t MicrophoneVolume(uint32_t& volume) const;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
options.js 15 var volumeElement = document.getElementById('volume');
18 var volume = localStorage['volume'] || 1.0;
21 volumeElement.value = volume;
27 volume = volumeElement.value;
28 localStorage['volume'] = volume;
41 volume = 1.0;
44 localStorage['volume'] = volume;
    [all...]
background.js 33 var volume = localStorage['volume'] || 1.0;
40 volume: parseFloat(volume),
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
dtmf_buffer_unittest.cc 32 static uint32_t MakeDtmfPayload(int event, bool end, int volume, int duration) {
37 // | event |E|R| volume | duration |
41 payload |= (volume & 0x003F) << 16;
53 && a.volume == b.volume);
65 int volume = 17; local
68 uint32_t payload = MakeDtmfPayload(event_no, end_bit, volume, duration);
78 EXPECT_EQ(volume, event.volume);
93 int volume = 17 local
128 int volume = 17; local
154 int volume = 1; local
198 int volume = 1; local
239 int volume = 1; local
275 int volume = 1; local
    [all...]
dtmf_buffer.h 25 int volume; member in struct:webrtc::DtmfEvent
33 volume(0),
40 volume(vol),
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
tts_base.js 29 this.propertyDefault['volume'] = 1;
30 this.propertyMin['volume'] = 0.2;
31 this.propertyMax['volume'] = 1.0;
  /external/chromium_org/chrome/browser/extensions/api/audio/
audio_service.cc 23 int volume,
50 int volume,
  /external/chromium_org/media/audio/pulse/
pulse_output.h 51 virtual void SetVolume(double volume) OVERRIDE;
52 virtual void GetVolume(double* volume) OVERRIDE;
84 // Float representation of volume from 0.0 to 1.0.
  /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);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance.cpp 77 float WebSpeechSynthesisUtterance::volume() const function in class:blink::WebSpeechSynthesisUtterance
79 return m_private->volume();
  /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/media/base/
audio_renderer.h 58 // Sets the output volume.
59 virtual void SetVolume(float volume) = 0;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
remoteaudiosource.h 57 virtual void SetVolume(double volume) OVERRIDE;
  /external/chromium_org/ash/
ash_touch_exploration_manager_chromeos.cc 40 void AshTouchExplorationManager::SetOutputLevel(int volume) {
41 if (volume > 0) {
46 audio_handler_->SetOutputVolumePercent(volume);
47 // Avoid negative volume.
  /external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesisUtterance.h 57 float volume() const { return m_volume; } function in class:blink::FINAL
58 void setVolume(float volume) { m_volume = std::max(std::min(1.0f, volume), 0.0f); }

Completed in 2715 milliseconds

12 3 4 5 6 7 8 91011>>