utterance         393 Source/core/html/shadow/TextControlInnerElements.cpp         input->dispatchEvent(TextEvent::create(document().domWindow(), results.isEmpty() ? "" : results[0]->utterance(), TextEventInputOther));
utterance          33 Source/core/speech/SpeechInputResult.cpp PassRefPtrWillBeRawPtr<SpeechInputResult> SpeechInputResult::create(const String& utterance, double confidence)
utterance          35 Source/core/speech/SpeechInputResult.cpp     return adoptRefWillBeNoop(new SpeechInputResult(utterance, confidence));
utterance          43 Source/core/speech/SpeechInputResult.cpp SpeechInputResult::SpeechInputResult(const String& utterance, double confidence)
utterance          44 Source/core/speech/SpeechInputResult.cpp     : m_utterance(utterance)
utterance          44 Source/core/speech/SpeechInputResult.h     static PassRefPtrWillBeRawPtr<SpeechInputResult> create(const String& utterance, double confidence);
utterance          47 Source/core/speech/SpeechInputResult.h     const String& utterance() const;
utterance          52 Source/core/speech/SpeechInputResult.h     SpeechInputResult(const String& utterance, double confidence);
utterance         102 Source/modules/speech/SpeechSynthesis.cpp     SpeechSynthesisUtterance* utterance = currentSpeechUtterance();
utterance         103 Source/modules/speech/SpeechSynthesis.cpp     ASSERT(utterance);
utterance         105 Source/modules/speech/SpeechSynthesis.cpp     utterance->setStartTime(monotonicallyIncreasingTime());
utterance         107 Source/modules/speech/SpeechSynthesis.cpp     m_platformSpeechSynthesizer->speak(utterance->platformUtterance());
utterance         110 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::speak(SpeechSynthesisUtterance* utterance, ExceptionState& exceptionState)
utterance         112 Source/modules/speech/SpeechSynthesis.cpp     if (!utterance) {
utterance         117 Source/modules/speech/SpeechSynthesis.cpp     m_utteranceQueue.append(utterance);
utterance         146 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::fireEvent(const AtomicString& type, SpeechSynthesisUtterance* utterance, unsigned long charIndex, const String& name)
utterance         149 Source/modules/speech/SpeechSynthesis.cpp         utterance->dispatchEvent(SpeechSynthesisEvent::create(type, charIndex, (currentTime() - utterance->startTime()), name));
utterance         152 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::handleSpeakingCompleted(SpeechSynthesisUtterance* utterance, bool errorOccurred)
utterance         154 Source/modules/speech/SpeechSynthesis.cpp     ASSERT(utterance);
utterance         159 Source/modules/speech/SpeechSynthesis.cpp     if (utterance == currentSpeechUtterance()) {
utterance         168 Source/modules/speech/SpeechSynthesis.cpp     fireEvent(errorOccurred ? EventTypeNames::error : EventTypeNames::end, utterance, 0, String());
utterance         175 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::boundaryEventOccurred(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance, SpeechBoundary boundary, unsigned charIndex)
utterance         182 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::boundary, static_cast<SpeechSynthesisUtterance*>(utterance->client()), charIndex, wordBoundaryString);
utterance         185 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::boundary, static_cast<SpeechSynthesisUtterance*>(utterance->client()), charIndex, sentenceBoundaryString);
utterance         192 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::didStartSpeaking(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance)
utterance         194 Source/modules/speech/SpeechSynthesis.cpp     if (utterance->client())
utterance         195 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::start, static_cast<SpeechSynthesisUtterance*>(utterance->client()), 0, String());
utterance         198 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::didPauseSpeaking(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance)
utterance         201 Source/modules/speech/SpeechSynthesis.cpp     if (utterance->client())
utterance         202 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::pause, static_cast<SpeechSynthesisUtterance*>(utterance->client()), 0, String());
utterance         205 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::didResumeSpeaking(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance)
utterance         208 Source/modules/speech/SpeechSynthesis.cpp     if (utterance->client())
utterance         209 Source/modules/speech/SpeechSynthesis.cpp         fireEvent(EventTypeNames::resume, static_cast<SpeechSynthesisUtterance*>(utterance->client()), 0, String());
utterance         212 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::didFinishSpeaking(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance)
utterance         214 Source/modules/speech/SpeechSynthesis.cpp     if (utterance->client())
utterance         215 Source/modules/speech/SpeechSynthesis.cpp         handleSpeakingCompleted(static_cast<SpeechSynthesisUtterance*>(utterance->client()), false);
utterance         218 Source/modules/speech/SpeechSynthesis.cpp void SpeechSynthesis::speakingErrorOccurred(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance)
utterance         220 Source/modules/speech/SpeechSynthesis.cpp     if (utterance->client())
utterance         221 Source/modules/speech/SpeechSynthesis.cpp         handleSpeakingCompleted(static_cast<SpeechSynthesisUtterance*>(utterance->client()), true);
utterance          77 Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp void PlatformSpeechSynthesizerMock::speak(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance)
utterance          80 Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp     m_utterance = utterance;
utterance          38 Source/platform/exported/WebSpeechSynthesisUtterance.cpp WebSpeechSynthesisUtterance::WebSpeechSynthesisUtterance(const PassRefPtr<PlatformSpeechSynthesisUtterance>& utterance)
utterance          39 Source/platform/exported/WebSpeechSynthesisUtterance.cpp     : m_private(utterance)
utterance          43 Source/platform/exported/WebSpeechSynthesisUtterance.cpp WebSpeechSynthesisUtterance& WebSpeechSynthesisUtterance::operator=(WebCore::PlatformSpeechSynthesisUtterance* utterance)
utterance          45 Source/platform/exported/WebSpeechSynthesisUtterance.cpp     m_private = utterance;
utterance          52 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::didStartSpeaking(const blink::WebSpeechSynthesisUtterance& utterance)
utterance          54 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp     m_client->didStartSpeaking(utterance);
utterance          57 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::didFinishSpeaking(const blink::WebSpeechSynthesisUtterance& utterance)
utterance          59 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp     m_client->didFinishSpeaking(utterance);
utterance          62 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::didPauseSpeaking(const blink::WebSpeechSynthesisUtterance& utterance)
utterance          64 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp     m_client->didPauseSpeaking(utterance);
utterance          67 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::didResumeSpeaking(const blink::WebSpeechSynthesisUtterance& utterance)
utterance          69 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp     m_client->didResumeSpeaking(utterance);
utterance          72 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::speakingErrorOccurred(const blink::WebSpeechSynthesisUtterance& utterance)
utterance          74 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp     m_client->speakingErrorOccurred(utterance);
utterance          77 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::wordBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance& utterance, unsigned charIndex)
utterance          79 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp     m_client->boundaryEventOccurred(utterance, SpeechWordBoundary, charIndex);
utterance          82 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp void WebSpeechSynthesizerClientImpl::sentenceBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance& utterance, unsigned charIndex)
utterance          84 Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp     m_client->boundaryEventOccurred(utterance, SpeechSentenceBoundary, charIndex);
utterance          57 Source/platform/speech/PlatformSpeechSynthesizer.cpp void PlatformSpeechSynthesizer::speak(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance)
utterance          62 Source/platform/speech/PlatformSpeechSynthesizer.cpp     m_webSpeechSynthesizer->speak(blink::WebSpeechSynthesisUtterance(utterance));
utterance          46 Source/web/WebSpeechInputResult.cpp void WebSpeechInputResult::assign(const WebString& utterance, double confidence)
utterance          48 Source/web/WebSpeechInputResult.cpp     m_private = WebCore::SpeechInputResult::create(utterance, confidence);
utterance          54 public/web/WebSpeechInputResult.h     BLINK_EXPORT void assign(const WebString& utterance, double confidence);