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/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 83 int misspellingLocation = -1;
85 client.checkSpellingOfString(String(text + start + wordStart, wordLength), &misspellingLocation, &misspellingLength);
87 ASSERT(0 <= misspellingLocation && misspellingLocation <= wordLength);
88 ASSERT(0 < misspellingLength && misspellingLocation + misspellingLength <= wordLength);
91 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...]
SpellChecker.cpp 330 int misspellingLocation = -1;
332 textChecker().checkSpellingOfString(word, &misspellingLocation, &misspellingLength);
    [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)
142 if (misspellingLocation)
143 *misspellingLocation = spellLocation;

Completed in 106 milliseconds