OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_grammars
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammarList.h
41
unsigned long length() const { return
m_grammars
.size(); }
52
HeapVector<Member<SpeechGrammar> >
m_grammars
;
member in class:WebCore::SpeechGrammarList
SpeechGrammarList.cpp
41
if (index >=
m_grammars
.size())
44
return
m_grammars
[index].get();
50
m_grammars
.append(SpeechGrammar::create(document->completeURL(src), weight));
56
m_grammars
.append(SpeechGrammar::create(KURL(KURL(), urlString), weight));
66
visitor->trace(
m_grammars
);
SpeechRecognition.h
53
SpeechGrammarList* grammars() { return
m_grammars
; }
54
void setGrammars(SpeechGrammarList* grammars) {
m_grammars
= grammars; }
107
Member<SpeechGrammarList>
m_grammars
;
member in class:WebCore::FINAL
SpeechRecognition.cpp
56
m_controller->start(this,
m_grammars
.get(), m_lang, m_continuous, m_interimResults, m_maxAlternatives);
170
,
m_grammars
(SpeechGrammarList::create()) // FIXME: The spec is not clear on the default value for the grammars attribute.
197
visitor->trace(
m_grammars
);
/external/chromium_org/third_party/WebKit/public/web/
WebSpeechRecognitionParams.h
41
:
m_grammars
(grammars)
50
const WebVector<WebSpeechGrammar>& grammars() const { return
m_grammars
; }
58
WebVector<WebSpeechGrammar>
m_grammars
;
member in class:blink::WebSpeechRecognitionParams
Completed in 53 milliseconds