Searched refs:spellcheck_results (Results 1 – 3 of 3) sorted by relevance
381 const std::vector<SpellCheckResult>& spellcheck_results, in CreateTextCheckingResults() argument388 for (size_t i = 0; i < spellcheck_results.size(); ++i) { in CreateTextCheckingResults()389 SpellCheckResult::Decoration decoration = spellcheck_results[i].decoration; in CreateTextCheckingResults()390 int word_location = spellcheck_results[i].location; in CreateTextCheckingResults()391 int word_length = spellcheck_results[i].length; in CreateTextCheckingResults()407 spellcheck_results[i].replacement, in CreateTextCheckingResults()408 spellcheck_results[i].hash)); in CreateTextCheckingResults()
1133 std::vector<SpellCheckResult> spellcheck_results; in TEST_F() local1134 spellcheck_results.push_back(SpellCheckResult( in TEST_F()1140 spellcheck_results, in TEST_F()1142 EXPECT_EQ(spellcheck_results.size(), textcheck_results.size()); 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()1153 std::vector<SpellCheckResult> spellcheck_results; in TEST_F() local1154 spellcheck_results.push_back(SpellCheckResult( in TEST_F()1160 spellcheck_results, in TEST_F()1162 EXPECT_EQ(spellcheck_results.size(), textcheck_results.size()); in TEST_F()[all …]
106 const std::vector<SpellCheckResult>& spellcheck_results,