HomeSort by relevance Sort by last modified time
    Searched refs:misspellingLocation (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/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 82 int misspellingLocation = -1;
84 client->checkSpellingOfString(String(text + start + wordStart, wordLength), &misspellingLocation, &misspellingLength);
86 ASSERT(0 <= misspellingLocation && misspellingLocation <= wordLength);
87 ASSERT(0 < misspellingLength && misspellingLocation + misspellingLength <= wordLength);
90 misspelling.location = start + wordStart + misspellingLocation;
247 int misspellingLocation = -1;
249 m_client->textChecker()->checkSpellingOfString(it.substring(0, length), &misspellingLocation, &misspellingLength);
255 ASSERT(misspellingLocation >= -1);
256 ASSERT(!misspellingLength || misspellingLocation >= 0)
    [all...]
Editor.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.h 87 virtual void checkSpellingOfString(const String&, int* misspellingLocation, int* misspellingLength) OVERRIDE;
EditorClientImpl.cpp 653 int* misspellingLocation,
671 if (misspellingLocation)
672 *misspellingLocation = spellLocation;

Completed in 43 milliseconds