voice              64 Source/modules/speech/SpeechSynthesisUtterance.cpp void SpeechSynthesisUtterance::setVoice(SpeechSynthesisVoice* voice)
voice              68 Source/modules/speech/SpeechSynthesisUtterance.cpp     m_voice = voice;
voice              70 Source/modules/speech/SpeechSynthesisUtterance.cpp     if (voice)
voice              71 Source/modules/speech/SpeechSynthesisUtterance.cpp         m_platformUtterance->setVoice(voice->platformVoice());
voice              53 Source/modules/speech/SpeechSynthesisUtterance.h     SpeechSynthesisVoice* voice() const;
voice              31 Source/modules/speech/SpeechSynthesisVoice.cpp PassRefPtrWillBeRawPtr<SpeechSynthesisVoice> SpeechSynthesisVoice::create(PassRefPtr<PlatformSpeechSynthesisVoice> voice)
voice              33 Source/modules/speech/SpeechSynthesisVoice.cpp     return adoptRefWillBeNoop(new SpeechSynthesisVoice(voice));
voice              36 Source/modules/speech/SpeechSynthesisVoice.cpp SpeechSynthesisVoice::SpeechSynthesisVoice(PassRefPtr<PlatformSpeechSynthesisVoice> voice)
voice              37 Source/modules/speech/SpeechSynthesisVoice.cpp     : m_platformVoice(voice)
voice              81 Source/platform/exported/WebSpeechSynthesisUtterance.cpp     return m_private->voice() ? WebString(m_private->voice()->name()) : WebString();
voice              54 Source/platform/speech/PlatformSpeechSynthesisUtterance.h     PlatformSpeechSynthesisVoice* voice() const { return m_voice.get(); }
voice              55 Source/platform/speech/PlatformSpeechSynthesisUtterance.h     void setVoice(PlatformSpeechSynthesisVoice* voice) { m_voice = voice; }
voice              55 public/platform/WebSpeechSynthesisUtterance.h     BLINK_PLATFORM_EXPORT WebString voice() const;