OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:misspellingLength
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp
84
int
misspellingLength
= 0;
85
client.checkSpellingOfString(String(text + start + wordStart, wordLength), &misspellingLocation, &
misspellingLength
);
86
if (0 <
misspellingLength
) {
88
ASSERT(0 <
misspellingLength
&& misspellingLocation +
misspellingLength
<= wordLength);
92
misspelling.length =
misspellingLength
;
248
int
misspellingLength
= 0;
249
m_client->textChecker().checkSpellingOfString(it.substring(0, length), &misspellingLocation, &
misspellingLength
);
254
ASSERT(
misspellingLength
>= 0);
256
ASSERT(!
misspellingLength
|| misspellingLocation >= 0)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp
[
all
...]
Completed in 354 milliseconds