HomeSort by relevance Sort by last modified time
    Searched full:misspelledlength (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/content/shell/renderer/test_runner/
SpellCheckClient.cpp 52 void SpellCheckClient::spellCheck(const WebString& text, int& misspelledOffset, int& misspelledLength, WebVector<WebString>* optionalSuggestions)
55 m_spellcheck.spellCheckWord(text, &misspelledOffset, &misspelledLength);
66 int misspelledLength = 0;
67 m_spellcheck.spellCheckWord(data.substr(offset), &misspelledPosition, &misspelledLength);
68 if (!misspelledLength)
73 result.length = misspelledLength;
75 offset += misspelledPosition + misspelledLength;
116 int misspelledLength = 0;
117 m_spellcheck.spellCheckWord(WebString(text), &misspelledPosition, &misspelledLength);
118 if (!misspelledLength)
    [all...]
MockSpellCheck.h 35 // the first invalid word to misspelledLength, respectively.
37 // misspelledOffset and 2 to misspelledLength, respectively.
38 bool spellCheckWord(const blink::WebString& text, int* misspelledOffset, int* misspelledLength);
MockSpellCheck.cpp 34 bool MockSpellCheck::spellCheckWord(const WebString& text, int* misspelledOffset, int* misspelledLength)
37 DCHECK(misspelledLength);
44 *misspelledLength = 0;
77 *misspelledLength = wordLength;
82 if (*misspelledLength > 0)
  /external/chromium_org/third_party/WebKit/public/web/
WebSpellCheckClient.h 48 // will point to the start of the misspelled word, and misspelledLength
50 // error, then upon return misspelledLength is 0. If optional_suggestions
54 int& misspelledLength,
  /external/chromium_org/chrome/browser/spellchecker/
misspelling_unittest.cc 26 "\"misspelledLength\": 7,"
misspelling.cc 59 result->SetInteger("misspelledLength", length);
feedback_sender_unittest.cc 439 "\"misspelledLength\":6,"
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 330 int misspelledOffset, misspelledLength;
331 m_webView->spellCheckClient()->spellCheck(data.misspelledWord, misspelledOffset, misspelledLength, &data.dictionarySuggestions);
340 int misspelledOffset, misspelledLength;
342 data.misspelledWord, misspelledOffset, misspelledLength,
344 if (!misspelledLength)

Completed in 308 milliseconds