m_platformUtterance   41 Source/modules/speech/SpeechSynthesisUtterance.cpp     m_platformUtterance->setText(text);
m_platformUtterance   46 Source/modules/speech/SpeechSynthesisUtterance.cpp     m_platformUtterance->setClient(0);
m_platformUtterance   71 Source/modules/speech/SpeechSynthesisUtterance.cpp         m_platformUtterance->setVoice(voice->platformVoice());
m_platformUtterance   47 Source/modules/speech/SpeechSynthesisUtterance.h     const String& text() const { return m_platformUtterance->text(); }
m_platformUtterance   48 Source/modules/speech/SpeechSynthesisUtterance.h     void setText(const String& text) { m_platformUtterance->setText(text); }
m_platformUtterance   50 Source/modules/speech/SpeechSynthesisUtterance.h     const String& lang() const { return m_platformUtterance->lang(); }
m_platformUtterance   51 Source/modules/speech/SpeechSynthesisUtterance.h     void setLang(const String& lang) { m_platformUtterance->setLang(lang); }
m_platformUtterance   56 Source/modules/speech/SpeechSynthesisUtterance.h     float volume() const { return m_platformUtterance->volume(); }
m_platformUtterance   57 Source/modules/speech/SpeechSynthesisUtterance.h     void setVolume(float volume) { m_platformUtterance->setVolume(volume); }
m_platformUtterance   59 Source/modules/speech/SpeechSynthesisUtterance.h     float rate() const { return m_platformUtterance->rate(); }
m_platformUtterance   60 Source/modules/speech/SpeechSynthesisUtterance.h     void setRate(float rate) { m_platformUtterance->setRate(rate); }
m_platformUtterance   62 Source/modules/speech/SpeechSynthesisUtterance.h     float pitch() const { return m_platformUtterance->pitch(); }
m_platformUtterance   63 Source/modules/speech/SpeechSynthesisUtterance.h     void setPitch(float pitch) { m_platformUtterance->setPitch(pitch); }
m_platformUtterance   65 Source/modules/speech/SpeechSynthesisUtterance.h     double startTime() const { return m_platformUtterance->startTime(); }
m_platformUtterance   66 Source/modules/speech/SpeechSynthesisUtterance.h     void setStartTime(double startTime) { m_platformUtterance->setStartTime(startTime); }
m_platformUtterance   78 Source/modules/speech/SpeechSynthesisUtterance.h     PlatformSpeechSynthesisUtterance* platformUtterance() const { return m_platformUtterance.get(); }
m_platformUtterance   84 Source/modules/speech/SpeechSynthesisUtterance.h     RefPtr<PlatformSpeechSynthesisUtterance> m_platformUtterance;