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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.h 57 bool isRangeEmpty() const { return checkingStart() >= checkingEnd(); }
59 int checkingStart() const;
62 String checkingSubstring() const { return textSubstring(checkingStart(), checkingLength()); }
64 bool checkingRangeCovers(int location, int length) const { return location < checkingEnd() && location + length > checkingStart(); }
TextCheckingHelper.cpp 198 int TextCheckingParagraph::checkingStart() const
210 m_checkingEnd = checkingStart() + TextIterator::rangeLength(checkingRange().get());
480 int badGrammarIndex = findFirstGrammarDetail(grammarDetails, badGrammarPhraseLocation, paragraph.checkingStart(), paragraph.checkingEnd(), markAll);
489 outGrammarPhraseOffset = badGrammarPhraseLocation - paragraph.checkingStart();
SpellChecker.cpp 532 int start = fullParagraphToCheck.checkingStart();
605 int resultLocation = result->location + paragraph.checkingStart();
614 if (shouldMarkSpelling && result->decoration == TextDecorationTypeSpelling && resultLocation >= paragraph.checkingStart() && resultLocation + resultLength <= spellingRangeEndOffset && !resultEndsAtAmbiguousBoundary) {
628 } else if (result->decoration == TextDecorationTypeInvisibleSpellcheck && resultLocation >= paragraph.checkingStart() && resultLocation + resultLength <= spellingRangeEndOffset) {
    [all...]

Completed in 138 milliseconds