OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:misspellingLength
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/text/
TextCheckerClient.h
44
virtual void checkSpellingOfString(const String&, int* misspellingLocation, int*
misspellingLength
) = 0;
/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
...]
SpellChecker.cpp
331
int
misspellingLength
= 0;
332
textChecker().checkSpellingOfString(word, &misspellingLocation, &
misspellingLength
);
334
return
misspellingLength
== wordLength ? word : String();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
SpellCheckerClientImpl.h
55
virtual void checkSpellingOfString(const String&, int* misspellingLocation, int*
misspellingLength
) OVERRIDE;
SpellCheckerClientImpl.cpp
125
void SpellCheckerClientImpl::checkSpellingOfString(const String& text, int* misspellingLocation, int*
misspellingLength
)
144
if (
misspellingLength
)
145
*
misspellingLength
= spellLength;
/external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp
[
all
...]
Completed in 33 milliseconds