HomeSort by relevance Sort by last modified time
    Searched refs:dictionary_change (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/chrome/browser/sync/test/integration/
dictionary_load_observer.cc 19 const SpellcheckCustomDictionary::Change& dictionary_change) {
dictionary_helper.cc 107 SpellcheckCustomDictionary::Change dictionary_change; local
108 dictionary_change.AddWord(word);
110 GetDictionary(index), dictionary_change);
113 GetVerifierDictionary(), dictionary_change);
119 SpellcheckCustomDictionary::Change dictionary_change; local
120 dictionary_change.RemoveWord(word);
122 GetDictionary(index), dictionary_change);
125 GetVerifierDictionary(), dictionary_change);
dictionary_load_observer.h 22 const SpellcheckCustomDictionary::Change& dictionary_change) OVERRIDE;
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary.cc 242 Change dictionary_change; local
243 dictionary_change.AddWord(word);
244 int result = dictionary_change.Sanitize(GetWords());
245 Apply(dictionary_change);
246 Notify(dictionary_change);
247 Sync(dictionary_change);
248 Save(dictionary_change);
254 Change dictionary_change; local
255 dictionary_change.RemoveWord(word);
256 int result = dictionary_change.Sanitize(GetWords())
375 Change dictionary_change; local
    [all...]
spellcheck_custom_dictionary.h 74 virtual void OnCustomDictionaryChanged(const Change& dictionary_change) = 0;
134 // Applies the change in |dictionary_change| to the custom spellcheck
135 // dictionary. Assumes that |dictionary_change| has been sanitized.
137 const Change& dictionary_change,
146 // Applies the |dictionary_change| to the in-memory copy of the dictionary.
147 // Assumes that words in |dictionary_change| are sorted.
148 void Apply(const Change& dictionary_change);
150 // Schedules a write of |dictionary_change| to disk. Assumes that words in
151 // |dictionary_change| are sorted.
152 void Save(const Change& dictionary_change);
    [all...]
spellcheck_service.h 118 const SpellcheckCustomDictionary::Change& dictionary_change) OVERRIDE;
spellcheck_service.cc 234 const SpellcheckCustomDictionary::Change& dictionary_change) {
239 dictionary_change.to_add(),
240 dictionary_change.to_remove()));
spellcheck_custom_dictionary_unittest.cc 81 const SpellcheckCustomDictionary::Change& dictionary_change,
83 SpellcheckCustomDictionary::UpdateDictionaryFile(dictionary_change, path);
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
language_dictionary_overlay_handler.h 29 const SpellcheckCustomDictionary::Change& dictionary_change) OVERRIDE;
language_dictionary_overlay_handler.cc 73 const SpellcheckCustomDictionary::Change& dictionary_change) {
76 add_words.AppendStrings(dictionary_change.to_add());
77 remove_words.AppendStrings(dictionary_change.to_remove());

Completed in 322 milliseconds