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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.h 62 void markMisspellings(const VisibleSelection&, RefPtrWillBeRawPtr<Range>& firstMisspellingRange);
92 void markMisspellingsOrBadGrammar(const VisibleSelection&, bool checkSpelling, RefPtrWillBeRawPtr<Range>& firstMisspellingRange);
TextCheckingHelper.h 88 String findFirstMisspelling(int& firstMisspellingOffset, bool markAll, RefPtrWillBeRawPtr<Range>& firstMisspellingRange);
91 void markAllMisspellings(RefPtrWillBeRawPtr<Range>& firstMisspellingRange);
SpellChecker.cpp 225 RefPtrWillBeRawPtr<Range> firstMisspellingRange = nullptr;
237 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
268 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
392 void SpellChecker::markMisspellingsOrBadGrammar(const VisibleSelection& selection, bool checkSpelling, RefPtrWillBeRawPtr<Range>& firstMisspellingRange)
416 checker.markAllMisspellings(firstMisspellingRange);
436 void SpellChecker::markMisspellings(const VisibleSelection& selection, RefPtrWillBeRawPtr<Range>& firstMisspellingRange)
438 markMisspellingsOrBadGrammar(selection, true, firstMisspellingRange);
443 RefPtrWillBeRawPtr<Range> firstMisspellingRange = nullptr;
444 markMisspellingsOrBadGrammar(selection, false, firstMisspellingRange);
623 RefPtrWillBeRawPtr<Range> firstMisspellingRange = nullptr
    [all...]
TextCheckingHelper.cpp 233 String TextCheckingHelper::findFirstMisspelling(int& firstMisspellingOffset, bool markAll, RefPtrWillBeRawPtr<Range>& firstMisspellingRange)
270 firstMisspellingRange = misspellingRange;
507 void TextCheckingHelper::markAllMisspellings(RefPtrWillBeRawPtr<Range>& firstMisspellingRange)
512 findFirstMisspelling(ignoredOffset, true, firstMisspellingRange);

Completed in 156 milliseconds