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

  /external/webkit/Source/WebCore/editing/
TextCheckingHelper.h 48 bool isRangeEmpty() const { return checkingStart() >= checkingEnd(); }
50 int checkingStart() const;
53 String checkingSubstring() const { return textSubstring(checkingStart(), checkingLength()); }
55 bool checkingRangeMatches(int location, int length) const { return location == checkingStart() && length == checkingLength(); }
56 bool isCheckingRangeCoveredBy(int location, int length) const { return location <= checkingStart() && location + length >= checkingStart() + checkingLength(); }
57 bool checkingRangeCovers(int location, int length) const { return location < checkingEnd() && location + length > checkingStart(); }
TextCheckingHelper.cpp 130 int TextCheckingParagraph::checkingStart() const
142 m_checkingEnd = checkingStart() + TextIterator::rangeLength(checkingRange().get());
438 int badGrammarIndex = findFirstGrammarDetail(grammarDetails, badGrammarPhraseLocation, badGrammarPhraseLength, paragraph.checkingStart(), paragraph.checkingEnd(), markAll);
447 outGrammarPhraseOffset = badGrammarPhraseLocation - paragraph.checkingStart();
Editor.cpp     [all...]

Completed in 497 milliseconds