Home | History | Annotate | Download | only in extension_api

Lines Matching refs:voice

86       const extensions::TtsVoice& voice = tts_voices->at(i);
92 result_voice.name = voice.voice_name;
93 result_voice.lang = voice.lang;
95 if (voice.gender == constants::kGenderMale)
97 else if (voice.gender == constants::kGenderFemale)
103 voice.event_types.begin();
104 iter != voice.event_types.end();
111 if (voice.event_types.find(constants::kEventTypeEnd) !=
112 voice.event_types.end()) {
120 void ExtensionTtsEngineSpeak(Utterance* utterance, const VoiceData& voice) {
124 bool sends_end_event = voice.events.find(TTS_EVENT_END) != voice.events.end();
217 const extensions::TtsVoice& voice = tts_voices->at(i);
218 if (voice.event_types.find(event_type) != voice.event_types.end()) {