OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:misspellingLocation
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp
83
int
misspellingLocation
= -1;
85
client.checkSpellingOfString(String(text + start + wordStart, wordLength), &
misspellingLocation
, &misspellingLength);
87
ASSERT(0 <=
misspellingLocation
&&
misspellingLocation
<= wordLength);
88
ASSERT(0 < misspellingLength &&
misspellingLocation
+ misspellingLength <= wordLength);
91
misspelling.location = start + wordStart +
misspellingLocation
;
247
int
misspellingLocation
= -1;
249
m_client->textChecker().checkSpellingOfString(it.substring(0, length), &
misspellingLocation
, &misspellingLength);
255
ASSERT(
misspellingLocation
>= -1);
256
ASSERT(!misspellingLength ||
misspellingLocation
>= 0)
[
all
...]
SpellChecker.cpp
330
int
misspellingLocation
= -1;
332
textChecker().checkSpellingOfString(word, &
misspellingLocation
, &misspellingLength);
[
all
...]
Completed in 25 milliseconds