checkingStart     487 Source/core/editing/SpellChecker.cpp     int start = fullParagraphToCheck.checkingStart();
checkingStart     560 Source/core/editing/SpellChecker.cpp         int resultLocation = result->location + paragraph.checkingStart();
checkingStart     569 Source/core/editing/SpellChecker.cpp         if (shouldMarkSpelling && result->decoration == TextDecorationTypeSpelling && resultLocation >= paragraph.checkingStart() && resultLocation + resultLength <= spellingRangeEndOffset && !resultEndsAtAmbiguousBoundary) {
checkingStart     583 Source/core/editing/SpellChecker.cpp         } else if (result->decoration == TextDecorationTypeInvisibleSpellcheck && resultLocation >= paragraph.checkingStart() && resultLocation + resultLength <= spellingRangeEndOffset) {
checkingStart     210 Source/core/editing/TextCheckingHelper.cpp         m_checkingEnd = checkingStart() + TextIterator::rangeLength(checkingRange().get());
checkingStart     482 Source/core/editing/TextCheckingHelper.cpp         int badGrammarIndex = findFirstGrammarDetail(grammarDetails, badGrammarPhraseLocation, paragraph.checkingStart(), paragraph.checkingEnd(), markAll);
checkingStart     491 Source/core/editing/TextCheckingHelper.cpp             outGrammarPhraseOffset = badGrammarPhraseLocation - paragraph.checkingStart();
checkingStart      57 Source/core/editing/TextCheckingHelper.h     bool isRangeEmpty() const { return checkingStart() >= checkingEnd(); }
checkingStart      59 Source/core/editing/TextCheckingHelper.h     int checkingStart() const;
checkingStart      62 Source/core/editing/TextCheckingHelper.h     String checkingSubstring() const { return textSubstring(checkingStart(), checkingLength()); }
checkingStart      64 Source/core/editing/TextCheckingHelper.h     bool checkingRangeCovers(int location, int length) const { return location < checkingEnd() && location + length > checkingStart(); }