Searched defs:misspellingLength (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
H A DSpellCheckerClientImpl.cpp129 void SpellCheckerClientImpl::checkSpellingOfString(const String& text, int* misspellingLocation, int* misspellingLength) argument
148 if (misspellingLength)
149 *misspellingLength = spellLength;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextCheckingHelper.cpp84 int misspellingLength = 0; local
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; local
249 m_client->textChecker().checkSpellingOfString(it.substring(0, length), &misspellingLocation, &misspellingLength);
254 ASSERT(misspellingLength >= 0);
256 ASSERT(!misspellingLength || misspellingLocatio
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebFrameTest.cpp4479 const int misspellingLength = 8; variable
4480 results.append(WebTextCheckingResult(WebTextDecorationTypeSpelling, misspellingStartOffset, misspellingLength, WebString(), m_hash));
4642 void kick(int misspellingStartOffset, int misspellingLength, WebTextDecorationType type) argument
4647 if (misspellingStartOffset >= 0 && misspellingLength > 0)
4648 results.append(WebTextCheckingResult(type, misspellingStartOffset, misspellingLength));

Completed in 123 milliseconds