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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.cpp 300 RefPtrWillBeRawPtr<Range> misspellingRange = TextIterator::subrange(spellingSearchRange.get(), misspellingOffset, misspelledWord.length());
301 m_frame.selection().setSelection(VisibleSelection(misspellingRange.get(), DOWNSTREAM));
305 m_frame.document()->markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling);
360 RefPtrWillBeRawPtr<Range> misspellingRange = nullptr;
361 markMisspellings(VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)), misspellingRange);
364 if (!misspellingRange)
368 const String misspelledWord = plainText(misspellingRange.get());
373 VisibleSelection newSelection(misspellingRange.get(), DOWNSTREAM);
573 RefPtrWillBeRawPtr<Range> misspellingRange = paragraph.subrange(resultLocation, resultLength);
574 misspellingRange->startContainer()->document().markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling (…)
    [all...]
TextCheckingHelper.cpp 264 RefPtrWillBeRawPtr<Range> misspellingRange = TextIterator::subrange(m_range.get(), currentChunkOffset + misspellingLocation, misspellingLength);
270 firstMisspellingRange = misspellingRange;
274 misspellingRange->startContainer()->document().markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling);

Completed in 55 milliseconds