/external/v8/src/base/platform/ |
D | platform-unittest.cc | 54 for (size_t i = 0; i < arraysize(keys_); ++i) { in ThreadLocalStorageTest() 55 keys_[i] = Thread::CreateThreadLocalKey(); in ThreadLocalStorageTest() 59 for (size_t i = 0; i < arraysize(keys_); ++i) { in ~ThreadLocalStorageTest() 60 Thread::DeleteThreadLocalKey(keys_[i]); in ~ThreadLocalStorageTest() 65 for (size_t i = 0; i < arraysize(keys_); i++) { in Run() 66 CHECK(!Thread::HasThreadLocal(keys_[i])); in Run() 68 for (size_t i = 0; i < arraysize(keys_); i++) { in Run() 69 Thread::SetThreadLocal(keys_[i], GetValue(i)); in Run() 71 for (size_t i = 0; i < arraysize(keys_); i++) { in Run() 72 CHECK(Thread::HasThreadLocal(keys_[i])); in Run() [all …]
|
/external/openfst/src/include/fst/ |
D | bi-table.h | 150 keys_(table_size, compact_hash_func_, compact_hash_equal_) { in hash_func_() 160 keys_(table.keys_.size(), compact_hash_func_, compact_hash_equal_), in CompactHashBiTable() 162 keys_.insert(table.keys_.begin(), table.keys_.end()); in CompactHashBiTable() 172 typename KeyHashSet::const_iterator it = keys_.find(kCurrentKey); 173 if (it == keys_.end()) { // T not found 177 keys_.insert(key); 197 keys_.erase(key); 200 keys_.rehash(0); 252 KeyHashSet keys_; variable 345 keys_(0, hash_func_, hash_equal_) { in selector_() [all …]
|
/external/openfst/src/include/fst/extensions/far/ |
D | sttable.h | 123 compare_ = new Compare(&keys_); in STTableReader() 124 keys_.resize(filenames.size()); in STTableReader() 199 return keys_[current_] == key; in Find() 207 ReadType(*(streams_[current_]), &(keys_[current_])); in Next() 223 return keys_[current_]; in GetKey() 235 Compare(const vector<string> *keys) : keys_(keys) {} in Compare() 238 return (*keys_)[i] > (*keys_)[j]; in operator() 242 const vector<string> *keys_; 281 ReadType(*streams_[i], &(keys_[i])); in MakeHeap() 306 << keys_[current_] << ", file: " << sources_[current_]; in PopHeap() [all …]
|
D | far.h | 407 : keys_(filenames), has_stdin_(false), pos_(0), fst_(0), error_(false) { in FstFarReader() 408 sort(keys_.begin(), keys_.end()); in FstFarReader() 409 streams_.resize(keys_.size(), 0); in FstFarReader() 410 for (size_t i = 0; i < keys_.size(); ++i) { in FstFarReader() 411 if (keys_[i].empty()) { in FstFarReader() 424 keys_[i].c_str(), ifstream::in | ifstream::binary); in FstFarReader() 427 if (pos_ >= keys_.size()) return; in FstFarReader() 452 bool Done() const { return error_ || pos_ >= keys_.size(); } in Done() 460 return keys_[pos_]; in GetKey() 473 for (size_t i = 0; i < keys_.size(); ++i) in ~FstFarReader() [all …]
|
/external/v8/src/ |
D | scopeinfo.h | 40 keys_[i].data = NULL; in ContextSlotCache() 41 keys_[i].name = NULL; in ContextSlotCache() 103 Key keys_[kLength]; variable
|
D | scopeinfo.cc | 434 Key& key = keys_[index]; in Lookup() 457 Key& key = keys_[index]; in Update() 471 for (int index = 0; index < kLength; index++) keys_[index].data = NULL; in Clear() 487 Key& key = keys_[index]; in ValidateEntry()
|
/external/jsoncpp/src/lib_json/ |
D | json_internalmap.inl | 34 free( keys_[index] ); 293 if ( strcmp( key, current->keys_[index] ) == 0 ) 327 if ( strcmp( key, current->keys_[index] ) == 0 ) 354 if ( strcmp( key, link->keys_[index] ) == 0 ) 426 link->keys_[index] = duplicatedKey; 585 return iterator.link_->keys_[iterator.itemIndex_]; 593 return iterator.link_->keys_[iterator.itemIndex_];
|
/external/google-breakpad/src/processor/ |
D | static_map_iterator-inl.h | 52 keys_ = reinterpret_cast<const Key*>( in StaticMapIterator() 111 return &(keys_[index_]); in GetKeyPtr()
|
D | static_map-inl.h | 55 keys_ = reinterpret_cast<const Key*>( in StaticMap() 171 return keys_[index]; in GetKeyAtIndex()
|
D | static_map_iterator.h | 107 const Key* keys_; variable
|
D | static_map.h | 137 const Key* keys_; variable
|
/external/marisa-trie/tests/ |
D | trie-test.cc | 35 : key_ids_(key_ids), keys_(keys) {} in PredictCallback() 37 : key_ids_(callback.key_ids_), keys_(callback.keys_) {} in PredictCallback() 41 keys_->push_back(key); in operator ()() 47 std::vector<std::string> *keys_; member in __anon4e0142d50111::PredictCallback
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
D | trie-search.cc | 13 : key_ids_(key_ids), keys_(keys), in PredictCallback() 16 : key_ids_(callback.key_ids_), keys_(callback.keys_), in PredictCallback() 24 if (keys_.is_valid()) { in operator ()() 25 keys_.insert(num_results_, key); in operator ()() 32 U keys_; member in marisa_alpha::__anon68df31190111::PredictCallback
|
/external/marisa-trie/lib/marisa/ |
D | trie-search.cc | 13 : key_ids_(key_ids), keys_(keys), in PredictCallback() 16 : key_ids_(callback.key_ids_), keys_(callback.keys_), in PredictCallback() 24 if (keys_.is_valid()) { in operator ()() 25 keys_.insert(num_results_, key); in operator ()() 32 U keys_; member in marisa::__anon46a0d35b0111::PredictCallback
|
/external/marisa-trie/v0_1_5/tests/ |
D | trie-test.cc | 35 : key_ids_(key_ids), keys_(keys) {} in PredictCallback() 37 : key_ids_(callback.key_ids_), keys_(callback.keys_) {} in PredictCallback() 41 keys_->push_back(key); in operator ()() 47 std::vector<std::string> *keys_; member in __anon1a73920e0111::PredictCallback
|
/external/v8/src/heap/ |
D | heap.h | 2270 keys_[i].map = NULL; in KeyedLookupCache() 2271 keys_[i].name = NULL; in KeyedLookupCache() 2280 Address keys_address() { return reinterpret_cast<Address>(&keys_); } in keys_address() 2291 Key keys_[kLength]; variable 2311 Key& key = keys_[index]; in Lookup() 2321 Key& key = keys_[index]; in Update() 2336 keys_[i].source = NULL; in DescriptorLookupCache() 2337 keys_[i].name = NULL; in DescriptorLookupCache() 2359 Key keys_[kLength]; variable
|
D | heap.cc | 5910 Key& key = keys_[index + i]; in Lookup() 5936 Key& key = keys_[index]; in Update() 5948 Key& key = keys_[index + i]; in Update() 5949 Key& key2 = keys_[index + i - 1]; in Update() 5955 Key& key = keys_[index]; in Update() 5963 for (int index = 0; index < kLength; index++) keys_[index].map = NULL; in Clear() 5968 for (int index = 0; index < kLength; index++) keys_[index].source = NULL; in Clear()
|
/external/jsoncpp/chromium-overrides/include/json/ |
D | value.h | 652 char *keys_[itemPerLink]; variable
|
/external/jsoncpp/include/json/ |
D | value.h | 652 char *keys_[itemPerLink]; variable
|