Lines Matching defs:utterance

64   TtsUtteranceRequest utterance;
65 utterance.id = id;
66 utterance.text = web_utterance.text().utf8();
67 utterance.lang = web_utterance.lang().utf8();
68 utterance.voice = web_utterance.voice().utf8();
69 utterance.volume = web_utterance.volume();
70 utterance.rate = web_utterance.rate();
71 utterance.pitch = web_utterance.pitch();
72 RenderThread::Get()->Send(new TtsHostMsg_Speak(utterance));
112 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
113 if (utterance.isNull())
116 synthesizer_client_->didStartSpeaking(utterance);
120 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
121 if (utterance.isNull())
124 synthesizer_client_->didFinishSpeaking(utterance);
129 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
130 if (utterance.isNull())
133 synthesizer_client_->didPauseSpeaking(utterance);
137 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
138 if (utterance.isNull())
141 synthesizer_client_->didResumeSpeaking(utterance);
147 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
148 if (utterance.isNull())
152 utterance, static_cast<unsigned>(char_index));
158 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
159 if (utterance.isNull())
163 utterance, static_cast<unsigned>(char_index));
171 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
172 if (utterance.isNull())
176 synthesizer_client_->didFinishSpeaking(utterance);
181 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
182 if (utterance.isNull())
186 synthesizer_client_->didFinishSpeaking(utterance);
192 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
193 if (utterance.isNull())
197 synthesizer_client_->speakingErrorOccurred(utterance);