Home
last modified time | relevance | path

Searched refs:m_grammars (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/speech/
DSpeechGrammarList.cpp41 if (index >= m_grammars.size()) in item()
44 return m_grammars[index].get(); in item()
50 m_grammars.append(SpeechGrammar::create(document->completeURL(src), weight)); in addFromUri()
56 m_grammars.append(SpeechGrammar::create(KURL(KURL(), urlString), weight)); in addFromString()
DSpeechRecognition.h54 PassRefPtr<SpeechGrammarList> grammars() { return m_grammars; } in grammars()
55 void setGrammars(PassRefPtr<SpeechGrammarList> grammars) { m_grammars = grammars; } in setGrammars()
107 RefPtr<SpeechGrammarList> m_grammars; variable
DSpeechGrammarList.h42 unsigned long length() const { return m_grammars.size(); } in length()
51 Vector<RefPtr<SpeechGrammar> > m_grammars; variable
DSpeechRecognition.cpp57 …m_controller->start(this, m_grammars.get(), m_lang, m_continuous, m_interimResults, m_maxAlternati… in start()
167 …, m_grammars(SpeechGrammarList::create()) // FIXME: The spec is not clear on the default value for… in SpeechRecognition()
/external/chromium_org/third_party/WebKit/public/web/
DWebSpeechRecognitionParams.h41 : m_grammars(grammars) in WebSpeechRecognitionParams()
50 const WebVector<WebSpeechGrammar>& grammars() const { return m_grammars; } in grammars()
58 WebVector<WebSpeechGrammar> m_grammars;