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

  /external/chromium_org/content/shell/renderer/test_runner/
SpellCheckClient.cpp 65 int misspelledPosition = 0;
67 m_spellcheck.spellCheckWord(data.substr(offset), &misspelledPosition, &misspelledLength);
72 result.location = offset + misspelledPosition;
75 offset += misspelledPosition + misspelledLength;
115 int misspelledPosition = 0;
117 m_spellcheck.spellCheckWord(WebString(text), &misspelledPosition, &misspelledLength);
121 m_spellcheck.fillSuggestionList(WebString(text.substr(misspelledPosition, misspelledLength)), &suggestions);
122 results.push_back(WebTextCheckingResult(WebTextDecorationTypeSpelling, offset + misspelledPosition, misspelledLength, suggestions.isEmpty() ? WebString() : suggestions[0]));
123 text = text.substr(misspelledPosition + misspelledLength);
124 offset += misspelledPosition + misspelledLength
    [all...]

Completed in 51 milliseconds