OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:checkingStart
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.h
55
bool isRangeEmpty() const { return
checkingStart
() >= checkingEnd(); }
57
int
checkingStart
() const;
60
String checkingSubstring() const { return textSubstring(
checkingStart
(), checkingLength()); }
62
bool checkingRangeCovers(int location, int length) const { return location < checkingEnd() && location + length >
checkingStart
(); }
TextCheckingHelper.cpp
198
int TextCheckingParagraph::
checkingStart
() const
210
m_checkingEnd =
checkingStart
() + TextIterator::rangeLength(checkingRange().get());
482
int badGrammarIndex = findFirstGrammarDetail(grammarDetails, badGrammarPhraseLocation, paragraph.
checkingStart
(), paragraph.checkingEnd(), markAll);
491
outGrammarPhraseOffset = badGrammarPhraseLocation - paragraph.
checkingStart
();
SpellChecker.cpp
517
int start = fullParagraphToCheck.
checkingStart
();
590
int resultLocation = result->location + paragraph.
checkingStart
();
599
if (shouldMarkSpelling && result->decoration == TextDecorationTypeSpelling && resultLocation >= paragraph.
checkingStart
() && resultLocation + resultLength <= spellingRangeEndOffset && !resultEndsAtAmbiguousBoundary) {
613
} else if (result->decoration == TextDecorationTypeInvisibleSpellcheck && resultLocation >= paragraph.
checkingStart
() && resultLocation + resultLength <= spellingRangeEndOffset) {
[
all
...]
Completed in 64 milliseconds