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 64 void markMisspellings(const VisibleSelection&, RefPtrWillBeRawPtr<Range>& firstMisspellingRange);
101 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 236 RefPtrWillBeRawPtr<Range> firstMisspellingRange = nullptr;
249 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchStart, spellingSearchEnd).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
282 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchStart, spellingSearchEnd).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
435 void SpellChecker::markMisspellingsOrBadGrammar(const VisibleSelection& selection, bool checkSpelling, RefPtrWillBeRawPtr<Range>& firstMisspellingRange)
459 checker.markAllMisspellings(firstMisspellingRange);
479 void SpellChecker::markMisspellings(const VisibleSelection& selection, RefPtrWillBeRawPtr<Range>& firstMisspellingRange)
481 markMisspellingsOrBadGrammar(selection, true, firstMisspellingRange);
486 RefPtrWillBeRawPtr<Range> firstMisspellingRange = nullptr;
487 markMisspellingsOrBadGrammar(selection, false, firstMisspellingRange);
666 RefPtrWillBeRawPtr<Range> firstMisspellingRange = nullptr
    [all...]
TextCheckingHelper.cpp 233 String TextCheckingHelper::findFirstMisspelling(int& firstMisspellingOffset, bool markAll, RefPtrWillBeRawPtr<Range>& firstMisspellingRange)
272 firstMisspellingRange = Range::create(misspellingStart.containerNode()->document(), m_start, m_end);
505 void TextCheckingHelper::markAllMisspellings(RefPtrWillBeRawPtr<Range>& firstMisspellingRange)
510 findFirstMisspelling(ignoredOffset, true, firstMisspellingRange);

Completed in 104 milliseconds