HomeSort by relevance Sort by last modified time
    Searched defs:voice (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisUtterance.cpp 58 SpeechSynthesisVoice* SpeechSynthesisUtterance::voice() const function in class:WebCore::SpeechSynthesisUtterance
63 void SpeechSynthesisUtterance::setVoice(SpeechSynthesisVoice* voice)
66 // to go from the platform voice back to the speech synthesis voice in the read property.
67 m_voice = voice;
69 if (voice)
70 m_platformUtterance->setVoice(voice->platformVoice());
  /external/chromium_org/chrome/browser/chromeos/accessibility/
speech_monitor.cc 44 const VoiceData& voice,
64 VoiceData& voice = out_voices->back(); local
65 voice.native = true;
66 voice.name = "SpeechMonitor";
67 voice.events.insert(TTS_EVENT_END);
  /external/chromium_org/chrome/common/
tts_utterance_request.h 20 std::string voice; member in struct:TtsUtteranceRequest
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance.cpp 74 WebString WebSpeechSynthesisUtterance::voice() const function in class:blink::WebSpeechSynthesisUtterance
76 return m_private->voice() ? WebString(m_private->voice()->name()) : WebString();
  /external/qemu/android/
audio-test.c 24 SWVoiceOut *voice; member in struct:__anon32749
41 AUD_write(ta->voice, ta->sample + ta->pos, avail);
62 ta->voice = AUD_open_out(
64 ta->voice,
70 if (!ta->voice) {
82 AUD_set_active_out(ta->voice, 1);
  /external/srec/srec/include/
frontapi.h 62 voicing_info voice; member in struct:__anon34824
    [all...]
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionServiceInfo.java 17 package android.service.voice;
84 if (!"voice-interaction-service".equals(nodeName)) {
85 mParseError = "Meta-data does not start with voice-interaction-service tag";
108 mParseError = "Error parsing voice interation service meta-data: " + e;
109 Log.w(TAG, "error parsing voice interaction service meta-data", e);
112 mParseError = "Error parsing voice interation service meta-data: " + e;
113 Log.w(TAG, "error parsing voice interaction service meta-data", e);
116 mParseError = "Error parsing voice interation service meta-data: " + e;
117 Log.w(TAG, "error parsing voice interaction service meta-data", e);
VoiceInteractionSessionService.java 17 package android.service.voice;
33 * An active voice interaction session, initiated by a {@link VoiceInteractionService}.
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_engine_extension_api.cc 90 const extensions::TtsVoice& voice = tts_voices->at(i); local
93 if (voice.remote && is_offline)
100 result_voice.name = voice.voice_name;
101 result_voice.lang = voice.lang;
102 result_voice.remote = voice.remote;
104 if (voice.gender == constants::kGenderMale)
106 else if (voice.gender == constants::kGenderFemale)
112 voice.event_types.begin();
113 iter != voice.event_types.end();
120 if (voice.event_types.find(constants::kEventTypeEnd) !
234 const extensions::TtsVoice& voice = tts_voices->at(i); local
    [all...]
tts_extension_api.cc 315 const VoiceData& voice = voices[i]; local
317 result_voice->SetString(constants::kVoiceNameKey, voice.name);
318 result_voice->SetBoolean(constants::kRemoteKey, voice.remote);
319 if (!voice.lang.empty())
320 result_voice->SetString(constants::kLangKey, voice.lang);
321 if (voice.gender == TTS_GENDER_MALE)
323 else if (voice.gender == TTS_GENDER_FEMALE)
325 if (!voice.extension_id.empty())
326 result_voice->SetString(constants::kExtensionIdKey, voice.extension_id);
329 for (std::set<TtsEventType>::iterator iter = voice.events.begin()
    [all...]
  /external/chromium_org/chrome/browser/speech/
tts_linux.cc 41 const VoiceData& voice,
84 // uniquely identify a voice across all available modules.
169 const VoiceData& voice,
183 all_native_voices_->find(voice.name);
269 VoiceData& voice = out_voices->back(); local
270 voice.native = true;
271 voice.name = it->first;
272 voice.events.insert(TTS_EVENT_START);
273 voice.events.insert(TTS_EVENT_END);
274 voice.events.insert(TTS_EVENT_CANCELLED)
    [all...]
tts_win.cc 26 const VoiceData& voice,
74 const VoiceData& voice,
175 // TODO: get all voices, not just default voice.
178 VoiceData& voice = out_voices->back(); local
179 voice.native = true;
180 voice.name = "native";
181 voice.events.insert(TTS_EVENT_START);
182 voice.events.insert(TTS_EVENT_END);
183 voice.events.insert(TTS_EVENT_MARKER);
184 voice.events.insert(TTS_EVENT_WORD)
    [all...]
tts_controller.cc 154 // Get all available voices and try to find a matching voice.
159 VoiceData voice; local
161 // Select the matching voice.
162 voice = voices[index];
165 // attempt to get a voice based only on the current locale without respect
166 // to any supplied voice names.
178 // If even that fails, just take the first available voice.
181 voice = voices[index];
184 voice.native = true;
188 GetPlatformImpl()->WillSpeakUtteranceWithVoice(utterance, voice);
377 const VoiceData& voice = voices[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesisUtterance.h 53 PlatformSpeechSynthesisVoice* voice() const { return m_voice; } function in class:WebCore::FINAL
54 void setVoice(PlatformSpeechSynthesisVoice* voice) { m_voice = voice; }
  /hardware/qcom/audio/hal/
voice.h 56 struct voice { struct
  /bionic/libc/kernel/uapi/sound/
asound_fm.h 31 unsigned char voice; member in struct:snd_dm_fm_voice
55 unsigned char voice; member in struct:snd_dm_fm_note
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
TtsPlatformImpl.java 168 * @return the name of the voice at a given index.
177 * @return the language of the voice at a given index.
259 TtsVoice voice = new TtsVoice(name, locales[i].toString()); local
260 mVoices.add(voice);
  /external/kernel-headers/original/uapi/sound/
asound_fm.h 43 unsigned char voice; /* FM voice (0 to 17) */ member in struct:snd_dm_fm_voice
66 * This describes an FM note by its voice, octave, frequency number (10bit)
71 unsigned char voice; /* 0-17 voice channel */ member in struct:snd_dm_fm_note
  /external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
InstallerActivity.java 1 package com.svox.pico.voice.deu.deu;
  /external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
InstallerActivity.java 1 package com.svox.pico.voice.eng.gbr;
  /external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
InstallerActivity.java 1 package com.svox.pico.voice.eng.usa;
  /external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
InstallerActivity.java 1 package com.svox.pico.voice.fra.fra;
  /external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
InstallerActivity.java 1 package com.svox.pico.voice.ita.ita;
  /external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
InstallerActivity.java 1 package com.svox.pico.voice.spa.esp;
  /external/svox/pico/lib/
picoctrl.c 340 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
345 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
350 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
355 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
360 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
365 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
370 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
375 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
381 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
387 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
502 picorsrc_Voice voice; member in struct:picoctrl_engine
    [all...]

Completed in 1341 milliseconds

1 2 3