Home | History | Annotate | Download | only in spellchecker

Lines Matching refs:to_remove

156 // Removes word from |to_remove| that are missing from |existing| word list and
157 // sorts |to_remove|. Returns a bitmap of |ChangeSanitationResult| values.
158 int SanitizeWordsToRemove(const WordSet& existing, WordList& to_remove) {
160 std::sort(to_remove.begin(), to_remove.end());
164 to_remove.begin(),
165 to_remove.end(),
168 if (to_remove.size() > found_words.size())
171 std::swap(to_remove, found_words);
184 to_remove_(other.to_remove()) {
215 const WordList& SpellcheckCustomDictionary::Change::to_remove() const {
437 dictionary_change.to_remove().begin(),
438 dictionary_change.to_remove().end(),
462 if (!dictionary_change.to_remove().empty()) {
466 dictionary_change.to_remove().begin(),
467 dictionary_change.to_remove().end(),
518 for (WordList::const_iterator it = dictionary_change.to_remove().begin();
519 it != dictionary_change.to_remove().end();