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());
482 int badGrammarIndex = findFirstGrammarDetail(grammarDetails, badGrammarPhraseLocation, paragraph.checkingStart(), paragraph.checkingEnd(), markAll);
491 outGrammarPhraseOffset = badGrammarPhraseLocation - paragraph.checkingStart();
SpellChecker.cpp 489 int start = fullParagraphToCheck.checkingStart();
562 int resultLocation = result->location + paragraph.checkingStart();
571 if (shouldMarkSpelling && result->decoration == TextDecorationTypeSpelling && resultLocation >= paragraph.checkingStart() && resultLocation + resultLength <= spellingRangeEndOffset && !resultEndsAtAmbiguousBoundary) {
585 } else if (result->decoration == TextDecorationTypeInvisibleSpellcheck && resultLocation >= paragraph.checkingStart() && resultLocation + resultLength <= spellingRangeEndOffset) {
    [all...]

Completed in 51 milliseconds