Searched defs:textcheck_results (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck_provider.cc228 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; local
233 &textcheck_results);
234 completion->didFinishCheckingText(textcheck_results);
238 last_results_.swap(textcheck_results);
275 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; local
280 &textcheck_results);
281 completion->didFinishCheckingText(textcheck_results);
H A Dspellcheck_unittest.cc1136 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; local
1141 &textcheck_results);
1142 EXPECT_EQ(spellcheck_results.size(), textcheck_results.size());
1144 textcheck_results[0].decoration);
1145 EXPECT_EQ(spellcheck_results[0].location, textcheck_results[0].location);
1146 EXPECT_EQ(spellcheck_results[0].length, textcheck_results[0].length);
1156 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; local
1161 &textcheck_results);
1162 EXPECT_EQ(spellcheck_results.size(), textcheck_results.size());
1164 textcheck_results[
[all...]
H A Dspellcheck.cc233 std::vector<WebTextCheckingResult> textcheck_results; local
251 results->assign(textcheck_results);
258 textcheck_results.push_back(WebTextCheckingResult(
266 results->assign(textcheck_results);
382 WebVector<WebTextCheckingResult>* textcheck_results) {
411 textcheck_results->assign(list);
377 CreateTextCheckingResults( ResultFilter filter, int line_offset, const base::string16& line_text, const std::vector<SpellCheckResult>& spellcheck_results, WebVector<WebTextCheckingResult>* textcheck_results) argument

Completed in 83 milliseconds