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

  /external/chromium_org/third_party/WebKit/Source/testing/runner/
SpellCheckClient.cpp 78 void SpellCheckClient::spellCheck(const WebString& text, int& misspelledOffset, int& misspelledLength, WebVector<WebString>* optionalSuggestions)
81 m_spellcheck.spellCheckWord(text, &misspelledOffset, &misspelledLength);
92 int misspelledLength = 0;
93 m_spellcheck.spellCheckWord(data.substr(offset), &misspelledPosition, &misspelledLength);
94 if (!misspelledLength)
99 result.length = misspelledLength;
101 offset += misspelledPosition + misspelledLength;
142 int misspelledLength = 0;
143 m_spellcheck.spellCheckWord(WebString(text), &misspelledPosition, &misspelledLength);
144 if (!misspelledLength)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 321 int misspelledOffset, misspelledLength;
322 m_webView->spellCheckClient()->spellCheck(data.misspelledWord, misspelledOffset, misspelledLength, &data.dictionarySuggestions);
331 int misspelledOffset, misspelledLength;
333 data.misspelledWord, misspelledOffset, misspelledLength,
335 if (!misspelledLength)

Completed in 2042 milliseconds