HomeSort by relevance Sort by last modified time
    Searched refs:grammarDetails (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp 413 int TextCheckingHelper::findFirstGrammarDetail(const Vector<GrammarDetail>& grammarDetails, int badGrammarPhraseLocation, int startOffset, int endOffset, bool markAll) const
419 for (unsigned i = 0; i < grammarDetails.size(); i++) {
420 const GrammarDetail* detail = &grammarDetails[i];
467 Vector<GrammarDetail> grammarDetails;
470 m_client->textChecker()->checkGrammarOfString(paragraph.textSubstring(startOffset), grammarDetails, &badGrammarPhraseLocation, &badGrammarPhraseLength);
482 int badGrammarIndex = findFirstGrammarDetail(grammarDetails, badGrammarPhraseLocation, paragraph.checkingStart(), paragraph.checkingEnd(), markAll);
484 ASSERT(static_cast<unsigned>(badGrammarIndex) < grammarDetails.size());
485 outGrammarDetail = grammarDetails[badGrammarIndex];
TextCheckingHelper.h 93 int findFirstGrammarDetail(const Vector<GrammarDetail>& grammarDetails, int badGrammarPhraseLocation, int startOffset, int endOffset, bool markAll) const;

Completed in 948 milliseconds