SpeechInput       267 Source/core/html/shadow/TextControlInnerElements.cpp     SpeechInput* speech = speechInput();
SpeechInput       361 Source/core/html/shadow/TextControlInnerElements.cpp SpeechInput* InputFieldSpeechButtonElement::speechInput()
SpeechInput       363 Source/core/html/shadow/TextControlInnerElements.cpp     return SpeechInput::from(document().page());
SpeechInput       409 Source/core/html/shadow/TextControlInnerElements.cpp     if (SpeechInput* input = SpeechInput::from(document().page()))
SpeechInput        36 Source/core/html/shadow/TextControlInnerElements.h class SpeechInput;
SpeechInput       129 Source/core/html/shadow/TextControlInnerElements.h     SpeechInput* speechInput();
SpeechInput        41 Source/core/speech/SpeechInput.cpp SpeechInput::SpeechInput(PassOwnPtr<SpeechInputClient> client)
SpeechInput        48 Source/core/speech/SpeechInput.cpp SpeechInput::~SpeechInput()
SpeechInput        53 Source/core/speech/SpeechInput.cpp PassOwnPtr<SpeechInput> SpeechInput::create(PassOwnPtr<SpeechInputClient> client)
SpeechInput        55 Source/core/speech/SpeechInput.cpp     return adoptPtr(new SpeechInput(client));
SpeechInput        58 Source/core/speech/SpeechInput.cpp int SpeechInput::registerListener(SpeechInputListener* listener)
SpeechInput        70 Source/core/speech/SpeechInput.cpp void SpeechInput::unregisterListener(int listenerId)
SpeechInput        76 Source/core/speech/SpeechInput.cpp void SpeechInput::didCompleteRecording(int listenerId)
SpeechInput        84 Source/core/speech/SpeechInput.cpp void SpeechInput::didCompleteRecognition(int listenerId)
SpeechInput        92 Source/core/speech/SpeechInput.cpp void SpeechInput::setRecognitionResult(int listenerId, const SpeechInputResultArray& result)
SpeechInput       100 Source/core/speech/SpeechInput.cpp bool SpeechInput::startRecognition(int listenerId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin* origin)
SpeechInput       106 Source/core/speech/SpeechInput.cpp void SpeechInput::stopRecording(int listenerId)
SpeechInput       112 Source/core/speech/SpeechInput.cpp void SpeechInput::cancelRecognition(int listenerId)
SpeechInput       118 Source/core/speech/SpeechInput.cpp const char* SpeechInput::supplementName()
SpeechInput       125 Source/core/speech/SpeechInput.cpp     SpeechInput::provideTo(page, SpeechInput::supplementName(), SpeechInput::create(client));
SpeechInput        51 Source/core/speech/SpeechInput.h class SpeechInput FINAL : public SpeechInputListener, public Supplement<Page> {
SpeechInput        52 Source/core/speech/SpeechInput.h     WTF_MAKE_NONCOPYABLE(SpeechInput);
SpeechInput        54 Source/core/speech/SpeechInput.h     virtual ~SpeechInput();
SpeechInput        56 Source/core/speech/SpeechInput.h     static PassOwnPtr<SpeechInput> create(PassOwnPtr<SpeechInputClient>);
SpeechInput        58 Source/core/speech/SpeechInput.h     static SpeechInput* from(Page* page) { return static_cast<SpeechInput*>(Supplement<Page>::from(page, supplementName())); }
SpeechInput        79 Source/core/speech/SpeechInput.h     explicit SpeechInput(PassOwnPtr<SpeechInputClient>);