Home
last modified time | relevance | path

Searched refs:dictionary_ (Results 1 – 8 of 8) sorted by relevance

/external/google-breakpad/src/processor/
Dpostfix_evaluator.h99 : dictionary_(dictionary), memory_(memory), stack_() {} in PostfixEvaluator()
116 DictionaryType* dictionary() const { return dictionary_; } in dictionary()
119 void set_dictionary(DictionaryType *dictionary) {dictionary_ = dictionary; } in set_dictionary()
164 DictionaryType *dictionary_; variable
Dpostfix_evaluator-inl.h191 (*dictionary_)[identifier] = value; in EvaluateToken()
330 dictionary_->find(token); in PopValue()
331 if (iterator == dictionary_->end()) { in PopValue()
/external/libweave/third_party/chromium/base/
Dvalues.cc369 ValueMap::const_iterator current_entry = dictionary_.find(key); in HasKey()
370 DCHECK((current_entry == dictionary_.end()) || current_entry->second); in HasKey()
371 return current_entry != dictionary_.end(); in HasKey()
375 ValueMap::iterator dict_iterator = dictionary_.begin(); in Clear()
376 while (dict_iterator != dictionary_.end()) { in Clear()
381 dictionary_.clear(); in Clear()
436 dictionary_.insert(std::make_pair(key, bare_ptr)); in SetWithoutPathExpansion()
611 ValueMap::const_iterator entry_iterator = dictionary_.find(key); in GetWithoutPathExpansion()
612 if (entry_iterator == dictionary_.end()) in GetWithoutPathExpansion()
731 ValueMap::iterator entry_iterator = dictionary_.find(key); in RemoveWithoutPathExpansion()
[all …]
Dvalues.h221 size_t size() const { return dictionary_.size(); } in size()
224 bool empty() const { return dictionary_.empty(); } in empty()
353 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); } in IsAtEnd()
371 ValueMap dictionary_;
/external/libchrome/base/
Dvalues.cc384 ValueMap::const_iterator current_entry = dictionary_.find(key); in HasKey()
385 DCHECK((current_entry == dictionary_.end()) || current_entry->second); in HasKey()
386 return current_entry != dictionary_.end(); in HasKey()
390 ValueMap::iterator dict_iterator = dictionary_.begin(); in Clear()
391 while (dict_iterator != dictionary_.end()) { in Clear()
396 dictionary_.clear(); in Clear()
456 dictionary_.insert(std::make_pair(key, bare_ptr)); in SetWithoutPathExpansion()
645 ValueMap::const_iterator entry_iterator = dictionary_.find(key); in GetWithoutPathExpansion()
646 if (entry_iterator == dictionary_.end()) in GetWithoutPathExpansion()
774 ValueMap::iterator entry_iterator = dictionary_.find(key); in RemoveWithoutPathExpansion()
[all …]
Dvalues.h227 size_t size() const { return dictionary_.size(); } in size()
230 bool empty() const { return dictionary_.empty(); } in empty()
365 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); } in IsAtEnd()
383 ValueMap dictionary_;
/external/v8/src/
Dtype-info.cc23 DCHECK(dictionary_->IsDictionary()); in TypeFeedbackOracle()
38 int entry = dictionary_->FindEntry(IdToKey(ast_id)); in GetInfo()
40 Object* value = dictionary_->ValueAt(entry); in GetInfo()
411 dictionary_ = scope.CloseAndEscape(dictionary_); in BuildDictionary()
428 dictionary_ = UnseededNumberDictionary::New(isolate(), infos->length()); in CreateDictionary()
472 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) == in SetInfo()
478 dictionary_, IdToKey(ast_id), handle(target, isolate()))); in SetInfo()
Dtype-info.h131 Handle<UnseededNumberDictionary> dictionary_; variable