Home
last modified time | relevance | path

Searched refs:checkGrammar (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/editing/
DTextCheckingHelper.cpp225 String TextCheckingHelper::findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling,… in findFirstMisspellingOrBadGrammar() argument
277 …TextCheckingTypeMask checkingTypes = checkGrammar ? (TextCheckingTypeSpelling | TextCheckingTypeGr… in findFirstMisspellingOrBadGrammar()
289 …if (checkGrammar && result->type == TextCheckingTypeGrammar && result->location < currentEndOffset… in findFirstMisspellingOrBadGrammar()
313 …if (!misspelledWord.isEmpty() && (!checkGrammar || badGrammarPhrase.isEmpty() || spellingLocation … in findFirstMisspellingOrBadGrammar()
324 if (checkGrammar && !badGrammarPhrase.isEmpty()) { in findFirstMisspellingOrBadGrammar()
348 UNUSED_PARAM(checkGrammar); in findFirstMisspellingOrBadGrammar()
510 Vector<String> TextCheckingHelper::guessesForMisspelledOrUngrammaticalRange(bool checkGrammar, bool… in guessesForMisspelledOrUngrammaticalRange() argument
527 …TextCheckingTypeMask checkingTypes = checkGrammar ? (TextCheckingTypeSpelling | TextCheckingTypeGr… in guessesForMisspelledOrUngrammaticalRange()
542 if (!checkGrammar) in guessesForMisspelledOrUngrammaticalRange()
566 UNUSED_PARAM(checkGrammar); in guessesForMisspelledOrUngrammaticalRange()
DTextCheckingHelper.h82 …String findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling, int& outFirstFound…
89 …Vector<String> guessesForMisspelledOrUngrammaticalRange(bool checkGrammar, bool& misspelled, bool&…