Home
last modified time | relevance | path

Searched refs:misspellingLength (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextCheckingHelper.cpp84 int misspellingLength = 0; in findMisspellings() local
85 …ngOfString(String(text + start + wordStart, wordLength), &misspellingLocation, &misspellingLength); in findMisspellings()
86 if (0 < misspellingLength) { in findMisspellings()
88 ASSERT(0 < misspellingLength && misspellingLocation + misspellingLength <= wordLength); in findMisspellings()
92 misspelling.length = misspellingLength; in findMisspellings()
248 int misspellingLength = 0; in findFirstMisspelling() local
249 …Checker().checkSpellingOfString(it.substring(0, length), &misspellingLocation, &misspellingLength); in findFirstMisspelling()
254 ASSERT(misspellingLength >= 0); in findFirstMisspelling()
256 ASSERT(!misspellingLength || misspellingLocation >= 0); in findFirstMisspelling()
258 ASSERT(misspellingLength <= length); in findFirstMisspelling()
[all …]
/external/chromium_org/third_party/WebKit/Source/web/
DSpellCheckerClientImpl.cpp129 …ntImpl::checkSpellingOfString(const String& text, int* misspellingLocation, int* misspellingLength) in checkSpellingOfString() argument
148 if (misspellingLength) in checkSpellingOfString()
149 *misspellingLength = spellLength; in checkSpellingOfString()
DSpellCheckerClientImpl.h54 …id checkSpellingOfString(const String&, int* misspellingLocation, int* misspellingLength) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/platform/text/
DTextCheckerClient.h44 …al void checkSpellingOfString(const String&, int* misspellingLocation, int* misspellingLength) = 0;
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebFrameTest.cpp4479 const int misspellingLength = 8; in requestCheckingOfText() local
4480 …eckingResult(WebTextDecorationTypeSpelling, misspellingStartOffset, misspellingLength, WebString()… in requestCheckingOfText()
4642 void kick(int misspellingStartOffset, int misspellingLength, WebTextDecorationType type) in kick() argument
4647 if (misspellingStartOffset >= 0 && misspellingLength > 0) in kick()
4648 results.append(WebTextCheckingResult(type, misspellingStartOffset, misspellingLength)); in kick()