OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:badGrammarRange
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.cpp
289
RefPtr<Range>
badGrammarRange
= TextIterator::subrange(grammarSearchRange.get(), grammarPhraseOffset + grammarDetail.location, grammarDetail.length);
290
m_frame.selection().setSelection(VisibleSelection(
badGrammarRange
.get(), SEL_DEFAULT_AFFINITY));
293
m_frame.document()->markers()->addMarker(
badGrammarRange
.get(), DocumentMarker::Grammar, grammarDetail.userDescription);
609
RefPtr<Range>
badGrammarRange
= paragraph.subrange(resultLocation + detail->location, detail->length);
610
badGrammarRange
->startContainer()->document().markers()->addMarker(
badGrammarRange
.get(), DocumentMarker::Grammar, detail->userDescription, result->hash);
[
all
...]
TextCheckingHelper.cpp
434
RefPtr<Range>
badGrammarRange
= TextIterator::subrange(m_range.get(), badGrammarPhraseLocation - startOffset + detail->location, detail->length);
435
badGrammarRange
->startContainer()->document().markers()->addMarker(
badGrammarRange
.get(), DocumentMarker::Grammar, detail->userDescription);
Completed in 724 milliseconds