Home
last modified time | relevance | path

Searched refs:WordSet (Results 1 – 12 of 12) sorted by relevance

/external/valgrind/main/helgrind/
Dhg_wordset.h47 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 …]
Dhg_wordset.c159 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 …]
Dhg_lock_n_thread.h51 typedef WordSet WordSetID;
Dhg_main.c3449 HG_(dieWS) ( univ_laog, (WordSet)i ); in univ_laog_do_GC()
Dlibhb_core.c6095 tl_assert(sizeof(WordSet) == sizeof(WordSetID)); in libhb_init()
/external/chromium_org/chrome/tools/convert_dict/
Ddic_reader.cc20 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/
Ddictionary_helper.cc86 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/
Dspellcheck_custom_dictionary.h48 int Sanitize(const chrome::spellcheck_common::WordSet& words);
81 const chrome::spellcheck_common::WordSet& GetWords() const;
164 chrome::spellcheck_common::WordSet words_;
Dspellcheck_custom_dictionary.cc25 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()
Dspellcheck_custom_dictionary_unittest.cc38 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/
Dlanguage_dictionary_overlay_handler.cc95 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/
Dspellcheck_common.h44 typedef std::set<std::string> WordSet; typedef