Home | History | Annotate | Download | only in renderer

Lines Matching refs:utterance

65   TtsUtteranceRequest utterance;
66 utterance.id = id;
67 utterance.text = web_utterance.text().utf8();
68 utterance.lang = web_utterance.lang().utf8();
69 utterance.voice = web_utterance.voice().utf8();
70 utterance.volume = web_utterance.volume();
71 utterance.rate = web_utterance.rate();
72 utterance.pitch = web_utterance.pitch();
73 RenderThread::Get()->Send(new TtsHostMsg_Speak(utterance));
113 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
114 if (utterance.isNull())
117 synthesizer_client_->didStartSpeaking(utterance);
121 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
122 if (utterance.isNull())
125 synthesizer_client_->didFinishSpeaking(utterance);
130 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
131 if (utterance.isNull())
134 synthesizer_client_->didPauseSpeaking(utterance);
138 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
139 if (utterance.isNull())
142 synthesizer_client_->didResumeSpeaking(utterance);
148 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
149 if (utterance.isNull())
153 utterance, static_cast<unsigned>(char_index));
159 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
160 if (utterance.isNull())
164 utterance, static_cast<unsigned>(char_index));
172 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
173 if (utterance.isNull())
177 synthesizer_client_->didFinishSpeaking(utterance);
182 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
183 if (utterance.isNull())
187 synthesizer_client_->didFinishSpeaking(utterance);
193 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
194 if (utterance.isNull())
198 synthesizer_client_->speakingErrorOccurred(utterance);