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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.cpp 335 TextCheckingTypeMask textCheckingOptions = 0;
338 textCheckingOptions |= TextCheckingTypeSpelling;
340 if (!(textCheckingOptions & TextCheckingTypeSpelling))
344 textCheckingOptions |= TextCheckingTypeGrammar;
347 if (textCheckingOptions & TextCheckingTypeGrammar) {
349 markAllMisspellingsAndBadGrammarInRanges(textCheckingOptions, adjacentWords.toNormalizedRange().get(), selectedSentence.toNormalizedRange().get());
351 markAllMisspellingsAndBadGrammarInRanges(textCheckingOptions, adjacentWords.toNormalizedRange().get(), adjacentWords.toNormalizedRange().get());
447 void SpellChecker::markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask textCheckingOptions, Range* spellingRange, Range* grammarRange)
451 bool shouldMarkGrammar = textCheckingOptions & TextCheckingTypeGrammar;
469 chunkAndMarkAllMisspellingsAndBadGrammar(textCheckingOptions, fullParagraphToCheck, asynchronous)
    [all...]
SpellChecker.h 97 void chunkAndMarkAllMisspellingsAndBadGrammar(TextCheckingTypeMask textCheckingOptions, const TextCheckingParagraph& fullParagraphToCheck, bool asynchronous);
98 void markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask textCheckingOptions, Range* checkingRange, Range* paragraphRange, bool asynchronous, int requestNumber, int* checkingLength = 0);
SpellCheckRequester.cpp 62 PassRefPtr<SpellCheckRequest> SpellCheckRequest::create(TextCheckingTypeMask textCheckingOptions, TextCheckingProcessType processType, PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange, int requestNumber)
79 return adoptRef(new SpellCheckRequest(checkingRange, paragraphRange, text, textCheckingOptions, processType, hashes, offsets, requestNumber));

Completed in 61 milliseconds