Home
last modified time | relevance | path

Searched refs:WebSpeechGrammar (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebSpeechGrammar.cpp34 void WebSpeechGrammar::reset() in reset()
39 void WebSpeechGrammar::assign(const WebSpeechGrammar& other) in assign()
44 WebSpeechGrammar::WebSpeechGrammar(SpeechGrammar* value) in WebSpeechGrammar() function in blink::WebSpeechGrammar
49 WebSpeechGrammar& WebSpeechGrammar::operator=(SpeechGrammar* value) in operator =()
55 WebURL WebSpeechGrammar::src() const in src()
61 float WebSpeechGrammar::weight() const in weight()
DSpeechRecognitionClientProxy.cpp57 WebVector<WebSpeechGrammar> webSpeechGrammars(static_cast<size_t>(grammarList->length())); in start()
Dweb.gypi231 'WebSpeechGrammar.cpp',
Dblink_web.target.linux-mips64.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.linux-x86_64.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.linux-arm64.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.darwin-mips.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.linux-x86.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.darwin-x86.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.linux-arm.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.darwin-mips64.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.linux-mips.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.darwin-x86_64.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.darwin-arm64.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
Dblink_web.target.darwin-arm.mk185 third_party/WebKit/Source/web/WebSpeechGrammar.cpp \
/external/chromium_org/third_party/WebKit/public/web/
DWebSpeechGrammar.h37 class WebSpeechGrammar {
39 WebSpeechGrammar() { } in WebSpeechGrammar() function
40 WebSpeechGrammar(const WebSpeechGrammar& grammar) { assign(grammar); } in WebSpeechGrammar() function
41 ~WebSpeechGrammar() { reset(); } in ~WebSpeechGrammar()
47 BLINK_EXPORT void assign(const WebSpeechGrammar&);
50 explicit WebSpeechGrammar(SpeechGrammar*);
51 WebSpeechGrammar& operator=(SpeechGrammar*);
DWebSpeechRecognitionParams.h36 class WebSpeechGrammar; variable
40 …WebSpeechRecognitionParams(const WebVector<WebSpeechGrammar>& grammars, const WebString& language,… in WebSpeechRecognitionParams()
50 const WebVector<WebSpeechGrammar>& grammars() const { return m_grammars; } in grammars()
58 WebVector<WebSpeechGrammar> m_grammars;
DWebSpeechRecognizer.h34 class WebSpeechGrammar; variable
/external/chromium_org/content/renderer/
Dspeech_recognition_dispatcher.cc20 using blink::WebSpeechGrammar;
70 const WebSpeechGrammar& grammar = params.grammars()[i]; in start()