Searched refs:WordSet (Results 1 – 12 of 12) sorted by relevance
/external/valgrind/main/helgrind/ |
D | hg_wordset.h | 47 typedef UInt WordSet; /* opaque, small int index */ typedef 70 WordSet HG_(emptyWS) ( WordSetU* ); 71 WordSet HG_(addToWS) ( WordSetU*, WordSet, UWord ); 72 WordSet HG_(delFromWS) ( WordSetU*, WordSet, UWord ); 73 WordSet HG_(unionWS) ( WordSetU*, WordSet, WordSet ); 74 WordSet HG_(intersectWS) ( WordSetU*, WordSet, WordSet ); 75 WordSet HG_(minusWS) ( WordSetU*, WordSet, WordSet ); 76 Bool HG_(isEmptyWS) ( WordSetU*, WordSet ); 77 Bool HG_(isSingletonWS) ( WordSetU*, WordSet, UWord ); 78 UWord HG_(anyElementOfWS) ( WordSetU*, WordSet ); [all …]
|
D | hg_wordset.c | 159 WordSet empty; /* cached, for speed */ 272 static WordVec* do_ix2vec ( WordSetU* wsu, WordSet ws ) in do_ix2vec() 290 static WordVec* do_ix2vec_with_dead ( WordSetU* wsu, WordSet ws ) in do_ix2vec_with_dead() 312 static WordSet add_or_dealloc_WordVec( WordSetU* wsu, WordVec* wv_new ) in add_or_dealloc_WordVec() 331 return (WordSet)ix_old; in add_or_dealloc_WordVec() 333 WordSet ws; in add_or_dealloc_WordVec() 351 return (WordSet)(wsu->ix2vec_used - 1); in add_or_dealloc_WordVec() 395 WordSet HG_(emptyWS) ( WordSetU* wsu ) in HG_() 400 Bool HG_(isEmptyWS) ( WordSetU* wsu, WordSet ws ) in HG_() 413 Bool HG_(isSingletonWS) ( WordSetU* wsu, WordSet ws, UWord w ) in HG_() [all …]
|
D | hg_lock_n_thread.h | 51 typedef WordSet WordSetID;
|
D | hg_main.c | 3449 HG_(dieWS) ( univ_laog, (WordSet)i ); in univ_laog_do_GC()
|
D | libhb_core.c | 6095 tl_assert(sizeof(WordSet) == sizeof(WordSetID)); in libhb_init()
|
/external/chromium_org/chrome/tools/convert_dict/ |
D | dic_reader.cc | 20 typedef std::map<std::string, std::set<int> > WordSet; typedef 54 bool PopulateWordSet(WordSet* word_set, FILE* file, AffReader* aff_reader, in PopulateWordSet() 116 WordSet::iterator found = word_set->find(utf8word); in PopulateWordSet() 155 WordSet word_set; in Read() 171 for (WordSet::iterator word = word_set.begin(); word != word_set.end(); in Read()
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
D | dictionary_helper.cc | 86 const chrome::spellcheck_common::WordSet& reference = in DictionariesMatch() 91 const chrome::spellcheck_common::WordSet& dictionary = in DictionariesMatch() 175 const chrome::spellcheck_common::WordSet& expected = in DictionaryMatchesVerifier() 177 const chrome::spellcheck_common::WordSet& actual = in DictionaryMatchesVerifier()
|
/external/chromium_org/chrome/browser/spellchecker/ |
D | spellcheck_custom_dictionary.h | 48 int Sanitize(const chrome::spellcheck_common::WordSet& words); 81 const chrome::spellcheck_common::WordSet& GetWords() const; 164 chrome::spellcheck_common::WordSet words_;
|
D | spellcheck_custom_dictionary.cc | 25 using chrome::spellcheck_common::WordSet; 129 int SanitizeWordsToAdd(const WordSet& existing, WordList& to_add) { in SanitizeWordsToAdd() 153 int SanitizeWordsToRemove(const WordSet& existing, WordList& to_remove) { in SanitizeWordsToRemove() 197 int SpellcheckCustomDictionary::Change::Sanitize(const WordSet& words) { in Sanitize() 230 const WordSet& SpellcheckCustomDictionary::GetWords() const { in GetWords() 350 for (WordSet::const_iterator it = words_.begin(); in GetAllSyncData() 401 if (!words.empty() && VALID_CHANGE != SanitizeWordsToAdd(WordSet(), words)) in LoadDictionaryFile() 451 WordSet updated_words = in Apply() 452 base::STLSetDifference<WordSet>(words_, in Apply()
|
D | spellcheck_custom_dictionary_unittest.cc | 38 using chrome::spellcheck_common::WordSet; 48 const WordSet& words = dictionary->GetWords(); in GetAllSyncDataNoLimit() 49 for (WordSet::const_iterator it = words.begin(); it != words.end(); ++it) { in GetAllSyncDataNoLimit() 202 WordSet expected1; in TEST_F() 203 WordSet expected2; in TEST_F() 215 WordSet actual1 = custom_dictionary->GetWords(); in TEST_F() 218 WordSet actual2 = custom_dictionary2->GetWords(); in TEST_F() 425 const WordSet& words = dictionary->GetWords(); in TEST_F() 477 WordSet words = custom_dictionary->GetWords(); in TEST_F() 478 WordSet words2 = custom_dictionary2->GetWords(); in TEST_F()
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
D | language_dictionary_overlay_handler.cc | 95 const chrome::spellcheck_common::WordSet& words = dictionary_->GetWords(); in ResetDictionaryWords() 96 for (chrome::spellcheck_common::WordSet::const_iterator it = words.begin(); in ResetDictionaryWords()
|
/external/chromium_org/chrome/common/ |
D | spellcheck_common.h | 44 typedef std::set<std::string> WordSet; typedef
|