Home
last modified time | relevance | path

Searched refs:resultLocation (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/editing/
DEditor.cpp2400 int resultLocation = result->location + offsetDueToReplacement; in markAllMisspellingsAndBadGrammarInRanges() local
2402 …& result->type == TextCheckingTypeSpelling && resultLocation >= spellingRangeStartOffset && result… in markAllMisspellingsAndBadGrammarInRanges()
2403 ASSERT(resultLength > 0 && resultLocation >= 0); in markAllMisspellingsAndBadGrammarInRanges()
2404 …RefPtr<Range> misspellingRange = TextIterator::subrange(spellingRange, resultLocation - spellingRa… in markAllMisspellingsAndBadGrammarInRanges()
2406 …r && result->type == TextCheckingTypeGrammar && resultLocation < grammarRangeEndOffset && resultLo… in markAllMisspellingsAndBadGrammarInRanges()
2407 ASSERT(resultLength > 0 && resultLocation >= 0); in markAllMisspellingsAndBadGrammarInRanges()
2411 …if (resultLocation + detail->location >= grammarRangeStartOffset && resultLocation + detail->locat… in markAllMisspellingsAndBadGrammarInRanges()
2412 …RefPtr<Range> badGrammarRange = TextIterator::subrange(grammarRange, resultLocation + detail->loca… in markAllMisspellingsAndBadGrammarInRanges()
2416 … if (performTextCheckingReplacements && resultLocation + resultLength <= spellingRangeEndOffset &&… in markAllMisspellingsAndBadGrammarInRanges()
2423 ASSERT(resultLength > 0 && resultLocation >= 0); in markAllMisspellingsAndBadGrammarInRanges()
[all …]