Searched defs:voice (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesisVoice.cpp31 PassRefPtr<SpeechSynthesisVoice> SpeechSynthesisVoice::create(PassRefPtr<PlatformSpeechSynthesisVoice> voice) argument
33 return adoptRef(new SpeechSynthesisVoice(voice));
36 SpeechSynthesisVoice::SpeechSynthesisVoice(PassRefPtr<PlatformSpeechSynthesisVoice> voice) argument
37 : m_platformVoice(voice)
H A DSpeechSynthesisUtterance.cpp59 SpeechSynthesisVoice* SpeechSynthesisUtterance::voice() const function in class:WebCore::SpeechSynthesisUtterance
64 void SpeechSynthesisUtterance::setVoice(SpeechSynthesisVoice* voice) argument
67 // to go from the platform voice back to the speech synthesis voice in the read property.
68 m_voice = voice;
70 if (voice)
71 m_platformUtterance->setVoice(voice->platformVoice());
/external/chromium_org/chrome/common/
H A Dtts_utterance_request.h20 std::string voice; member in struct:TtsUtteranceRequest
/external/qemu/android/
H A Daudio-test.c24 SWVoiceOut *voice; member in struct:__anon24965
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/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebSpeechSynthesisUtterance.cpp79 WebString WebSpeechSynthesisUtterance::voice() const function in class:blink::WebSpeechSynthesisUtterance
81 return m_private->voice() ? WebString(m_private->voice()->name()) : WebString();
/external/srec/srec/cfront/
H A Dchelfep.c52 voicing_info *voice,
89 if (voice != NULL)
95 *voicedata = (featdata) voicing_analysis(voice, smooth_c0, NULL);
98 *voicedata = (featdata) voicing_analysis(voice, framdata[0], NULL);
101 *voicedata = (featdata) voicing_analysis(voice, framdata[0], NULL);
50 make_frame(front_channel *channel, front_wave *waveobj, front_freq *freqobj, front_cep *cepobj, voicing_info *voice, samdata *inFramesWorth, samdata *refFramesWorth, int num_samples, featdata *framdata, featdata *voicedata) argument
/external/srec/srec/include/
H A Dfrontapi.h62 voicing_info voice; member in struct:__anon26816
/external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
H A DInstallerActivity.java1 package com.svox.pico.voice.deu.deu;
/external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
H A DInstallerActivity.java1 package com.svox.pico.voice.eng.gbr;
/external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
H A DInstallerActivity.java1 package com.svox.pico.voice.eng.usa;
/external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
H A DInstallerActivity.java1 package com.svox.pico.voice.fra.fra;
/external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
H A DInstallerActivity.java1 package com.svox.pico.voice.ita.ita;
/external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
H A DInstallerActivity.java1 package com.svox.pico.voice.spa.esp;
/external/chromium_org/chrome/browser/speech/extension_api/
H A Dtts_engine_extension_api.cc90 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
129 ExtensionTtsEngineSpeak(Utterance* utterance, const VoiceData& voice) argument
234 const extensions::TtsVoice& voice = tts_voices->at(i); local
[all...]
H A Dtts_extension_apitest.cc54 const VoiceData& voice,
83 const VoiceData& voice,
98 const VoiceData& voice,
111 const VoiceData& voice,
80 SendEndEvent(int utterance_id, const std::string& utterance, const std::string& lang, const VoiceData& voice, const UtteranceContinuousParameters& params) argument
94 SendEndEventWhenQueueNotEmpty( int utterance_id, const std::string& utterance, const std::string& lang, const VoiceData& voice, const UtteranceContinuousParameters& params) argument
108 SendWordEvents(int utterance_id, const std::string& utterance, const std::string& lang, const VoiceData& voice, const UtteranceContinuousParameters& params) argument
H A Dtts_extension_api.cc316 const VoiceData& voice = voices[i]; local
318 result_voice->SetString(constants::kVoiceNameKey, voice.name);
319 result_voice->SetBoolean(constants::kRemoteKey, voice.remote);
320 if (!voice.lang.empty())
321 result_voice->SetString(constants::kLangKey, voice.lang);
322 if (voice.gender == TTS_GENDER_MALE)
324 else if (voice.gender == TTS_GENDER_FEMALE)
326 if (!voice.extension_id.empty())
327 result_voice->SetString(constants::kExtensionIdKey, voice.extension_id);
330 for (std::set<TtsEventType>::iterator iter = voice
[all...]
/external/chromium_org/chrome/browser/speech/
H A Dtts_android.cc44 const VoiceData& voice,
40 Speak( int utterance_id, const std::string& utterance, const std::string& lang, const VoiceData& voice, const UtteranceContinuousParameters& params) argument
H A Dtts_win.cc26 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
70 Speak( int utterance_id, const std::string& src_utterance, const std::string& lang, const VoiceData& voice, const UtteranceContinuousParameters& params) argument
[all...]
H A Dtts_controller.cc153 // Get all available voices and try to find a matching voice.
158 // Select the matching voice, but if none was found, initialize an
162 VoiceData voice; local
164 voice = voices[index];
166 voice.native = true;
168 if (!voice.native) {
170 DCHECK(!voice.extension_id.empty());
172 utterance->set_extension_id(voice.extension_id);
173 ExtensionTtsEngineSpeak(utterance, voice);
175 voice
355 const VoiceData& voice = voices[i]; local
[all...]
H A Dtts_linux.cc39 const VoiceData& voice,
82 // uniquely identify a voice across all available modules.
163 const VoiceData& voice,
177 all_native_voices_->find(voice.name);
263 VoiceData& voice = out_voices->back(); local
264 voice.native = true;
265 voice.name = it->first;
266 voice.events.insert(TTS_EVENT_START);
267 voice.events.insert(TTS_EVENT_END);
268 voice
159 Speak( int utterance_id, const std::string& utterance, const std::string& lang, const VoiceData& voice, const UtteranceContinuousParameters& params) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/speech/
H A DPlatformSpeechSynthesisUtterance.h54 PlatformSpeechSynthesisVoice* voice() const { return m_voice.get(); } function in class:WebCore::PlatformSpeechSynthesisUtterance
55 void setVoice(PlatformSpeechSynthesisVoice* voice) { m_voice = voice; } argument
/external/chromium/chrome/browser/extensions/
H A Dextension_tts_api.cc163 const Extension::TtsVoice& voice = tts_voices[i]; local
164 if (!voice.voice_name.empty() &&
166 voice.voice_name != utterance->voice_name()) {
169 if (!voice.locale.empty() &&
171 voice.locale != utterance->locale()) {
174 if (!voice.gender.empty() &&
176 voice.gender != utterance->gender()) {
/external/svox/pico/lib/
H A Dpicowa.c106 wa->lex = picoklex_getLex(this->voice->kbArray[PICOKNOW_KBID_LEX_MAIN]);
116 ulex = picoklex_getLex(this->voice->kbArray[ulexKbIds[i]]);
125 picoktab_getPos(this->voice->kbArray[PICOKNOW_KBID_TAB_POS]);
133 wa->dtposp = picokdt_getDtPosP(this->voice->kbArray[PICOKNOW_KBID_DT_POSP]);
164 picorsrc_Voice voice) {
167 this = picodata_newProcessingUnit(mm, common, cbIn, cbOut, voice);
542 PICODATA_INFO_ITEM(this->voice->kbArray[PICOKNOW_KBID_DBG],
160 picowa_newWordAnaUnit(picoos_MemoryManager mm, picoos_Common common, picodata_CharBuffer cbIn, picodata_CharBuffer cbOut, picorsrc_Voice voice) argument
H A Dpicoctrl.c340 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);
420 picoctrl_newControl(picoos_MemoryManager mm, picoos_Common common, picodata_CharBuffer cbIn, picodata_CharBuffer cbOut, picorsrc_Voice voice) argument
502 picorsrc_Voice voice; member in struct:picoctrl_engine
[all...]
/external/qemu/hw/
H A Dgoldfish_audio.c107 SWVoiceOut *voice; member in struct:goldfish_audio_state
179 ret = AUD_write(s->voice, b->data + b->offset, write);
271 // enable or disable the output voice
272 if (s->voice != NULL) {
273 AUD_set_active_out(s->voice, (enable & (AUDIO_INT_WRITE_BUFFER_1_EMPTY | AUDIO_INT_WRITE_BUFFER_2_EMPTY)) != 0);
583 s->voice = AUD_open_out (
591 if (!s->voice) {

Completed in 424 milliseconds

12