HomeSort by relevance Sort by last modified time
    Searched refs:misspellingLength (Results 1 - 5 of 5) 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...]
  /external/chromium_org/third_party/WebKit/Source/web/
SpellCheckerClientImpl.h 55 virtual void checkSpellingOfString(const String&, int* misspellingLocation, int* misspellingLength) OVERRIDE;
SpellCheckerClientImpl.cpp 131 void SpellCheckerClientImpl::checkSpellingOfString(const String& text, int* misspellingLocation, int* misspellingLength)
150 if (misspellingLength)
151 *misspellingLength = spellLength;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp     [all...]

Completed in 814 milliseconds