Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/editing/
DSpellChecker.cpp509 TextCheckingParagraph fullParagraphToCheck(rangeToCheck); in markAllMisspellingsAndBadGrammarInRanges() local
512 … chunkAndMarkAllMisspellingsAndBadGrammar(textCheckingOptions, fullParagraphToCheck, asynchronous); in markAllMisspellingsAndBadGrammarInRanges()
525 …heckingTypeMask textCheckingOptions, const TextCheckingParagraph& fullParagraphToCheck, bool async… in chunkAndMarkAllMisspellingsAndBadGrammar() argument
527 if (fullParagraphToCheck.isRangeEmpty() || fullParagraphToCheck.isEmpty()) in chunkAndMarkAllMisspellingsAndBadGrammar()
532 int start = fullParagraphToCheck.checkingStart(); in chunkAndMarkAllMisspellingsAndBadGrammar()
533 int end = fullParagraphToCheck.checkingEnd(); in chunkAndMarkAllMisspellingsAndBadGrammar()
538 RefPtrWillBeRawPtr<Range> checkRange = fullParagraphToCheck.checkingRange(); in chunkAndMarkAllMisspellingsAndBadGrammar()
545 checkRange = fullParagraphToCheck.subrange(currentChunkStart, kChunkSize); in chunkAndMarkAllMisspellingsAndBadGrammar()
DSpellChecker.h106 …heckingTypeMask textCheckingOptions, const TextCheckingParagraph& fullParagraphToCheck, bool async…