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

  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 263 int misspelledOffset, misspelledLength;
265 data.misspelledWord, misspelledOffset, misspelledLength,
267 if (!misspelledLength)
  /external/webkit/Tools/DumpRenderTree/chromium/
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...]

Completed in 30 milliseconds