Home | History | Annotate | Download | only in win

Lines Matching refs:guesses

35 PassRefPtr<WebGrammarDetail> WebGrammarDetail::create(int location, int length, ImmutableArray* guesses, const String& userDescription)
37 return adoptRef(new WebGrammarDetail(location, length, guesses, userDescription));
45 WebGrammarDetail::WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription)
50 size_t numGuesses = guesses->size();
51 m_grammarDetail.guesses.reserveCapacity(numGuesses);
53 m_grammarDetail.guesses.uncheckedAppend(guesses->at<WebString>(i)->string());
58 PassRefPtr<ImmutableArray> WebGrammarDetail::guesses() const
60 size_t numGuesses = m_grammarDetail.guesses.size();
63 wkGuesses[i] = WebString::create(m_grammarDetail.guesses[i]);