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

  /external/webkit/Source/WebKit/chromium/public/
WebSpellCheckClient.h 46 // will point to the start of the misspelled word, and misspelledLength
48 // error, then upon return misspelledLength is 0. If optional_suggestions
52 int& misspelledLength,
  /external/webkit/Tools/DumpRenderTree/chromium/
MockSpellCheck.cpp 48 bool MockSpellCheck::spellCheckWord(const WebString& text, int* misspelledOffset, int* misspelledLength)
51 ASSERT(misspelledLength);
58 *misspelledLength = 0;
90 *misspelledLength = wordLength;
MockSpellCheck.h 58 // the first invalid word to misspelledLength, respectively.
60 // misspelledOffset and 2 to misspelledLength, respectively.
63 int* misspelledLength);
WebViewHost.cpp 408 void WebViewHost::spellCheck(const WebString& text, int& misspelledOffset, int& misspelledLength, WebVector<WebString>* optionalSuggestions)
411 m_spellcheck.spellCheckWord(text, &misspelledOffset, &misspelledLength);
429 int misspelledLength = 0;
430 m_spellcheck.spellCheckWord(WebString(text.characters(), text.length()), &misspelledPosition, &misspelledLength);
431 if (!misspelledLength)
433 results.append(WebTextCheckingResult(WebTextCheckingResult::ErrorSpelling, offset + misspelledPosition, misspelledLength));
434 text = text.substring(misspelledPosition + misspelledLength);
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 263 int misspelledOffset, misspelledLength;
265 data.misspelledWord, misspelledOffset, misspelledLength,
267 if (!misspelledLength)

Completed in 33 milliseconds