Home
last modified time | relevance | path

Searched refs:textcheck_results (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/chrome/renderer/spellchecker/
Dspellcheck_provider.cc228 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; in OnRespondSpellingService() local
233 &textcheck_results); in OnRespondSpellingService()
234 completion->didFinishCheckingText(textcheck_results); in OnRespondSpellingService()
238 last_results_.swap(textcheck_results); in OnRespondSpellingService()
275 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; in OnRespondTextCheck() local
280 &textcheck_results); in OnRespondTextCheck()
281 completion->didFinishCheckingText(textcheck_results); in OnRespondTextCheck()
Dspellcheck.cc233 std::vector<WebTextCheckingResult> textcheck_results; in SpellCheckParagraph() local
251 results->assign(textcheck_results); in SpellCheckParagraph()
258 textcheck_results.push_back(WebTextCheckingResult( in SpellCheckParagraph()
266 results->assign(textcheck_results); in SpellCheckParagraph()
382 WebVector<WebTextCheckingResult>* textcheck_results) { in CreateTextCheckingResults() argument
411 textcheck_results->assign(list); in CreateTextCheckingResults()
Dspellcheck_unittest.cc1136 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; in TEST_F() local
1141 &textcheck_results); in TEST_F()
1142 EXPECT_EQ(spellcheck_results.size(), textcheck_results.size()); in TEST_F()
1144 textcheck_results[0].decoration); in TEST_F()
1145 EXPECT_EQ(spellcheck_results[0].location, textcheck_results[0].location); in TEST_F()
1146 EXPECT_EQ(spellcheck_results[0].length, textcheck_results[0].length); in TEST_F()
1156 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; in TEST_F() local
1161 &textcheck_results); in TEST_F()
1162 EXPECT_EQ(spellcheck_results.size(), textcheck_results.size()); in TEST_F()
1164 textcheck_results[0].decoration); in TEST_F()
[all …]
Dspellcheck.h107 blink::WebVector<blink::WebTextCheckingResult>* textcheck_results);