Home
last modified time | relevance | path

Searched refs:dictionary_ (Results 1 – 6 of 6) 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/libchrome/base/
Dvalues.cc369 auto 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 dictionary_.clear(); in Clear()
432 dictionary_[key] = std::move(in_value); in SetWithoutPathExpansion()
616 auto entry_iterator = dictionary_.find(key); in GetWithoutPathExpansion()
617 if (entry_iterator == dictionary_.end()) in GetWithoutPathExpansion()
745 auto entry_iterator = dictionary_.find(key); in RemoveWithoutPathExpansion()
746 if (entry_iterator == dictionary_.end()) in RemoveWithoutPathExpansion()
751 dictionary_.erase(entry_iterator); in RemoveWithoutPathExpansion()
[all …]
Dvalues.h226 size_t size() const { return dictionary_.size(); } in size()
229 bool empty() const { return dictionary_.empty(); } in empty()
366 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); } in IsAtEnd()
384 Storage dictionary_;
/external/v8/src/
Dtype-info.cc23 DCHECK(dictionary_->IsUnseededNumberDictionary()); in TypeFeedbackOracle()
38 int entry = dictionary_->FindEntry(IdToKey(ast_id)); in GetInfo()
40 Object* value = dictionary_->ValueAt(entry); in GetInfo()
506 dictionary_ = scope.CloseAndEscape(dictionary_); in BuildDictionary()
523 dictionary_ = UnseededNumberDictionary::New(isolate(), infos->length()); in CreateDictionary()
566 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) == in SetInfo()
572 dictionary_, IdToKey(ast_id), handle(target, isolate()))); in SetInfo()
Dtype-info.h125 Handle<UnseededNumberDictionary> dictionary_; variable