Searched refs:WebSpeechRecognitionHandle (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
H A DWebSpeechRecognitionHandle.h38 // WebSpeechRecognitionHandle is used by WebSpeechRecognizer to identify a
41 class WebSpeechRecognitionHandle { class in namespace:blink
43 ~WebSpeechRecognitionHandle() { reset(); }
44 WebSpeechRecognitionHandle() { } function in class:blink::WebSpeechRecognitionHandle
46 WebSpeechRecognitionHandle(const WebSpeechRecognitionHandle& other) { assign(other); } function in class:blink::WebSpeechRecognitionHandle
47 WebSpeechRecognitionHandle& operator=(const WebSpeechRecognitionHandle& other)
54 BLINK_EXPORT void assign(const WebSpeechRecognitionHandle&);
56 // Comparison functions are provided so that WebSpeechRecognitionHandle object
[all...]
H A DWebSpeechRecognizerClient.h34 class WebSpeechRecognitionHandle;
56 virtual void didStartAudio(const WebSpeechRecognitionHandle&) = 0;
60 virtual void didStartSound(const WebSpeechRecognitionHandle&) = 0;
64 virtual void didEndSound(const WebSpeechRecognitionHandle&) = 0;
68 virtual void didEndAudio(const WebSpeechRecognitionHandle&) = 0;
76 virtual void didReceiveResults(const WebSpeechRecognitionHandle&, const WebVector<WebSpeechRecognitionResult>& newFinalResults, const WebVector<WebSpeechRecognitionResult>& currentInterimResults) = 0;
80 virtual void didReceiveNoMatch(const WebSpeechRecognitionHandle&, const WebSpeechRecognitionResult&) = 0;
83 virtual void didReceiveError(const WebSpeechRecognitionHandle&, const WebString& message, ErrorCode) = 0;
87 virtual void didStart(const WebSpeechRecognitionHandle&) = 0;
91 virtual void didEnd(const WebSpeechRecognitionHandle
[all...]
H A DWebSpeechRecognizer.h30 #include "WebSpeechRecognitionHandle.h"
42 virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecognitionParams&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); } argument
45 virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); } argument
48 virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); } argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSpeechRecognitionHandle.cpp27 #include "public/web/WebSpeechRecognitionHandle.h"
33 void WebSpeechRecognitionHandle::reset()
38 void WebSpeechRecognitionHandle::assign(const WebSpeechRecognitionHandle& other)
43 bool WebSpeechRecognitionHandle::equals(const WebSpeechRecognitionHandle& other) const
48 bool WebSpeechRecognitionHandle::lessThan(const WebSpeechRecognitionHandle& other) const
53 WebSpeechRecognitionHandle::WebSpeechRecognitionHandle(SpeechRecognitio function in class:blink::WebSpeechRecognitionHandle
[all...]
H A DSpeechRecognitionClientProxy.h54 virtual void didStartAudio(const WebSpeechRecognitionHandle&) OVERRIDE;
55 virtual void didStartSound(const WebSpeechRecognitionHandle&) OVERRIDE;
56 virtual void didEndSound(const WebSpeechRecognitionHandle&) OVERRIDE;
57 virtual void didEndAudio(const WebSpeechRecognitionHandle&) OVERRIDE;
58 virtual void didReceiveResults(const WebSpeechRecognitionHandle&, const WebVector<WebSpeechRecognitionResult>& newFinalResults, const WebVector<WebSpeechRecognitionResult>& currentInterimResults) OVERRIDE;
59 virtual void didReceiveNoMatch(const WebSpeechRecognitionHandle&, const WebSpeechRecognitionResult&) OVERRIDE;
60 virtual void didReceiveError(const WebSpeechRecognitionHandle&, const WebString& message, WebSpeechRecognizerClient::ErrorCode) OVERRIDE;
61 virtual void didStart(const WebSpeechRecognitionHandle&) OVERRIDE;
62 virtual void didEnd(const WebSpeechRecognitionHandle&) OVERRIDE;
H A DSpeechRecognitionClientProxy.cpp38 #include "public/web/WebSpeechRecognitionHandle.h"
62 m_recognizer->start(WebSpeechRecognitionHandle(recognition), params, this);
67 m_recognizer->stop(WebSpeechRecognitionHandle(recognition), this);
72 m_recognizer->abort(WebSpeechRecognitionHandle(recognition), this);
75 void SpeechRecognitionClientProxy::didStartAudio(const WebSpeechRecognitionHandle& handle)
81 void SpeechRecognitionClientProxy::didStartSound(const WebSpeechRecognitionHandle& handle)
88 void SpeechRecognitionClientProxy::didEndSound(const WebSpeechRecognitionHandle& handle)
95 void SpeechRecognitionClientProxy::didEndAudio(const WebSpeechRecognitionHandle& handle)
101 void SpeechRecognitionClientProxy::didReceiveResults(const WebSpeechRecognitionHandle& handle, const WebVector<WebSpeechRecognitionResult>& newFinalResults, const WebVector<WebSpeechRecognitionResult>& currentInterimResults)
116 void SpeechRecognitionClientProxy::didReceiveNoMatch(const WebSpeechRecognitionHandle
[all...]
H A Dblink_web.target.darwin-arm.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.darwin-arm64.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.darwin-mips.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.darwin-mips64.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.darwin-x86.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.darwin-x86_64.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.linux-arm.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.linux-arm64.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.linux-mips.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.linux-mips64.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.linux-x86.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
H A Dblink_web.target.linux-x86_64.mk186 third_party/WebKit/Source/web/WebSpeechRecognitionHandle.cpp \
/external/chromium_org/content/renderer/
H A Dspeech_recognition_dispatcher.h14 #include "third_party/WebKit/public/web/WebSpeechRecognitionHandle.h"
39 virtual void start(const blink::WebSpeechRecognitionHandle&,
42 virtual void stop(const blink::WebSpeechRecognitionHandle&,
44 virtual void abort(const blink::WebSpeechRecognitionHandle&,
57 int GetOrCreateIDForHandle(const blink::WebSpeechRecognitionHandle& handle);
58 bool HandleExists(const blink::WebSpeechRecognitionHandle& handle);
59 const blink::WebSpeechRecognitionHandle& GetHandleFromID(int handle_id);
64 typedef std::map<int, blink::WebSpeechRecognitionHandle> HandleMap;
H A Dspeech_recognition_dispatcher.cc21 using blink::WebSpeechRecognitionHandle;
62 const WebSpeechRecognitionHandle& handle,
86 const WebSpeechRecognitionHandle& handle,
96 const WebSpeechRecognitionHandle& handle,
172 WebSpeechRecognitionHandle handle = iter->second;
216 const WebSpeechRecognitionHandle& handle) {
232 const WebSpeechRecognitionHandle& handle) {
242 const WebSpeechRecognitionHandle& SpeechRecognitionDispatcher::GetHandleFromID(
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_speech_recognizer.h16 class WebSpeechRecognitionHandle;
33 virtual void start(const blink::WebSpeechRecognitionHandle& handle,
36 virtual void stop(const blink::WebSpeechRecognitionHandle& handle,
38 virtual void abort(const blink::WebSpeechRecognitionHandle& handle,
48 blink::WebSpeechRecognitionHandle& Handle() { return handle_; }
69 blink::WebSpeechRecognitionHandle handle_;
H A Dmock_web_speech_recognizer.cc18 const blink::WebSpeechRecognitionHandle&);
123 const blink::WebSpeechRecognitionHandle& handle,
160 const blink::WebSpeechRecognitionHandle& handle,
170 const blink::WebSpeechRecognitionHandle& handle,

Completed in 815 milliseconds