Home
last modified time | relevance | path

Searched refs:webResults (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DSpellCheckerClientImpl.cpp184 WebVector<WebTextCheckingResult> webResults; in checkGrammarOfString() local
185 …m_webView->spellCheckClient()->checkTextOfParagraph(text, WebTextCheckingTypeGrammar, &webResults); in checkGrammarOfString()
186 if (!webResults.size()) in checkGrammarOfString()
193 for (size_t i = 0; i < webResults.size(); ++i) { in checkGrammarOfString()
194 if (webResults[i].decoration == WebTextDecorationTypeGrammar) { in checkGrammarOfString()
196 detail.location = webResults[i].location; in checkGrammarOfString()
197 detail.length = webResults[i].length; in checkGrammarOfString()
198 detail.userDescription = webResults[i].replacement; in checkGrammarOfString()
/external/chromium_org/third_party/WebKit/Source/testing/runner/
DSpellCheckClient.cpp84 …(const WebString& text, WebTextCheckingTypeMask mask, WebVector<WebTextCheckingResult>* webResults) in checkTextOfParagraph() argument
106 webResults->assign(results); in checkTextOfParagraph()