SpeechSynthesisUtterance  102 Source/modules/speech/SpeechSynthesis.cpp     SpeechSynthesisUtterance* utterance = currentSpeechUtterance();
SpeechSynthesisUtterance  110 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::speak(SpeechSynthesisUtterance* utterance, ExceptionState& exceptionState)
SpeechSynthesisUtterance  146 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::fireEvent(const AtomicString& type, SpeechSynthesisUtterance* utterance, unsigned long charIndex, const String& name)
SpeechSynthesisUtterance  152 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::handleSpeakingCompleted(SpeechSynthesisUtterance* utterance, bool errorOccurred)
SpeechSynthesisUtterance  182 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::boundary, static_cast<SpeechSynthesisUtterance*>(utterance->client()), charIndex, wordBoundaryString);
SpeechSynthesisUtterance  185 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::boundary, static_cast<SpeechSynthesisUtterance*>(utterance->client()), charIndex, sentenceBoundaryString);
SpeechSynthesisUtterance  195 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::start, static_cast<SpeechSynthesisUtterance*>(utterance->client()), 0, String());
SpeechSynthesisUtterance  202 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::pause, static_cast<SpeechSynthesisUtterance*>(utterance->client()), 0, String());
SpeechSynthesisUtterance  209 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::resume, static_cast<SpeechSynthesisUtterance*>(utterance->client()), 0, String());
SpeechSynthesisUtterance  215 Source/modules/speech/SpeechSynthesis.cpp         handleSpeakingCompleted(static_cast<SpeechSynthesisUtterance*>(utterance->client()), false);
SpeechSynthesisUtterance  221 Source/modules/speech/SpeechSynthesis.cpp         handleSpeakingCompleted(static_cast<SpeechSynthesisUtterance*>(utterance->client()), true);
SpeechSynthesisUtterance  224 Source/modules/speech/SpeechSynthesis.cpp SpeechSynthesisUtterance* SpeechSynthesis::currentSpeechUtterance() const
SpeechSynthesisUtterance  233 Source/modules/speech/SpeechSynthesis.cpp     return EventTargetNames::SpeechSynthesisUtterance;
SpeechSynthesisUtterance   56 Source/modules/speech/SpeechSynthesis.h     void speak(SpeechSynthesisUtterance*, ExceptionState&);
SpeechSynthesisUtterance   85 Source/modules/speech/SpeechSynthesis.h     void handleSpeakingCompleted(SpeechSynthesisUtterance*, bool errorOccurred);
SpeechSynthesisUtterance   86 Source/modules/speech/SpeechSynthesis.h     void fireEvent(const AtomicString& type, SpeechSynthesisUtterance*, unsigned long charIndex, const String& name);
SpeechSynthesisUtterance   89 Source/modules/speech/SpeechSynthesis.h     SpeechSynthesisUtterance* currentSpeechUtterance() const;
SpeechSynthesisUtterance   93 Source/modules/speech/SpeechSynthesis.h     Deque<RefPtrWillBeMember<SpeechSynthesisUtterance> > m_utteranceQueue;
SpeechSynthesisUtterance   31 Source/modules/speech/SpeechSynthesisUtterance.cpp PassRefPtrWillBeRawPtr<SpeechSynthesisUtterance> SpeechSynthesisUtterance::create(ExecutionContext* context, const String& text)
SpeechSynthesisUtterance   33 Source/modules/speech/SpeechSynthesisUtterance.cpp     return adoptRefWillBeRefCountedGarbageCollected(new SpeechSynthesisUtterance(context, text));
SpeechSynthesisUtterance   36 Source/modules/speech/SpeechSynthesisUtterance.cpp SpeechSynthesisUtterance::SpeechSynthesisUtterance(ExecutionContext* context, const String& text)
SpeechSynthesisUtterance   44 Source/modules/speech/SpeechSynthesisUtterance.cpp SpeechSynthesisUtterance::~SpeechSynthesisUtterance()
SpeechSynthesisUtterance   49 Source/modules/speech/SpeechSynthesisUtterance.cpp ExecutionContext* SpeechSynthesisUtterance::executionContext() const
SpeechSynthesisUtterance   54 Source/modules/speech/SpeechSynthesisUtterance.cpp const AtomicString& SpeechSynthesisUtterance::interfaceName() const
SpeechSynthesisUtterance   56 Source/modules/speech/SpeechSynthesisUtterance.cpp     return EventTargetNames::SpeechSynthesisUtterance;
SpeechSynthesisUtterance   59 Source/modules/speech/SpeechSynthesisUtterance.cpp SpeechSynthesisVoice* SpeechSynthesisUtterance::voice() const
SpeechSynthesisUtterance   64 Source/modules/speech/SpeechSynthesisUtterance.cpp void SpeechSynthesisUtterance::setVoice(SpeechSynthesisVoice* voice)
SpeechSynthesisUtterance   74 Source/modules/speech/SpeechSynthesisUtterance.cpp void SpeechSynthesisUtterance::trace(Visitor* visitor)
SpeechSynthesisUtterance   40 Source/modules/speech/SpeechSynthesisUtterance.h class SpeechSynthesisUtterance FINAL : public RefCountedWillBeRefCountedGarbageCollected<SpeechSynthesisUtterance>, public PlatformSpeechSynthesisUtteranceClient, public ScriptWrappable, public ContextLifecycleObserver, public EventTargetWithInlineData {
SpeechSynthesisUtterance   41 Source/modules/speech/SpeechSynthesisUtterance.h     DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<SpeechSynthesisUtterance>);
SpeechSynthesisUtterance   43 Source/modules/speech/SpeechSynthesisUtterance.h     static PassRefPtrWillBeRawPtr<SpeechSynthesisUtterance> create(ExecutionContext*, const String&);
SpeechSynthesisUtterance   45 Source/modules/speech/SpeechSynthesisUtterance.h     virtual ~SpeechSynthesisUtterance();
SpeechSynthesisUtterance   83 Source/modules/speech/SpeechSynthesisUtterance.h     SpeechSynthesisUtterance(ExecutionContext*, const String&);