/external/chromium_org/chrome/renderer/spellchecker/ |
custom_dictionary_engine_unittest.cc | 11 std::set<std::string> custom_words; local 12 engine.Init(custom_words); 19 std::set<std::string> custom_words; local 20 custom_words.insert("helllo"); 21 engine.Init(custom_words);
|
custom_dictionary_engine.cc | 16 void CustomDictionaryEngine::Init(const std::set<std::string>& custom_words) { 21 for (std::set<std::string>::const_iterator it = custom_words.begin(); 22 it != custom_words.end();
|
spellcheck.h | 48 const std::set<std::string>& custom_words, 122 const std::set<std::string>& custom_words,
|
spellcheck.cc | 134 const std::set<std::string>& custom_words, 138 custom_words, language); local 171 const std::set<std::string>& custom_words, 174 custom_dictionary_.Init(custom_words);
|
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_custom_dictionary.cc | 86 // Loads the custom spellcheck dictionary from |path| into |custom_words|. If 88 // restores the backup and loads that into |custom_words| instead. If the backup 89 // is invalid too, then clears |custom_words|. Must be called on the file 91 void LoadDictionaryFileReliably(WordList& custom_words, 95 if (LoadFile(path, custom_words) == VALID_CHECKSUM) 102 if (LoadFile(backup, custom_words) != VALID_CHECKSUM) 108 // Backs up the original dictionary, saves |custom_words| and its checksum into 111 const WordList& custom_words, 115 for (WordList::const_iterator it = custom_words.begin(); 116 it != custom_words.end() [all...] |
spellcheck_custom_dictionary_unittest.cc | 96 const chrome::spellcheck_common::WordList& custom_words) { 97 dictionary.OnLoaded(custom_words); 773 WordList custom_words; local 774 custom_words.push_back("bar"); 775 OnLoaded(*custom_dictionary, custom_words); 811 WordList custom_words; local 815 custom_words.push_back("foo" + base::Uint64ToString(i)); 817 OnLoaded(*custom_dictionary, custom_words); 888 WordList custom_words; local [all...] |
spellcheck_custom_dictionary.h | 142 // |custom_words|, but cannot be a const-ref due to the signature of 144 void OnLoaded(chrome::spellcheck_common::WordList custom_words);
|