HomeSort by relevance Sort by last modified time
    Searched refs:dictionary_ (Results 1 - 6 of 6) sorted by null

  /external/google-breakpad/src/processor/
postfix_evaluator.h 99 : dictionary_(dictionary), memory_(memory), stack_() {}
116 DictionaryType* dictionary() const { return dictionary_; }
119 void set_dictionary(DictionaryType *dictionary) {dictionary_ = dictionary; }
164 DictionaryType *dictionary_; member in class:google_breakpad::PostfixEvaluator
postfix_evaluator-inl.h 191 (*dictionary_)[identifier] = value;
330 dictionary_->find(token);
331 if (iterator == dictionary_->end()) {
  /external/libchrome/base/
values.cc 369 auto current_entry = dictionary_.find(key);
370 DCHECK((current_entry == dictionary_.end()) || current_entry->second);
371 return current_entry != dictionary_.end();
375 dictionary_.clear();
432 dictionary_[key] = std::move(in_value);
616 auto entry_iterator = dictionary_.find(key);
617 if (entry_iterator == dictionary_.end())
745 auto entry_iterator = dictionary_.find(key);
746 if (entry_iterator == dictionary_.end())
751 dictionary_.erase(entry_iterator)
    [all...]
values.h 226 size_t size() const { return dictionary_.size(); }
229 bool empty() const { return dictionary_.empty(); }
366 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); }
384 Storage dictionary_; member in class:base::DictionaryValue
  /external/v8/src/
type-info.cc 23 DCHECK(dictionary_->IsUnseededNumberDictionary());
38 int entry = dictionary_->FindEntry(IdToKey(ast_id));
40 Object* value = dictionary_->ValueAt(entry);
506 dictionary_ = scope.CloseAndEscape(dictionary_);
523 dictionary_ = UnseededNumberDictionary::New(isolate(), infos->length());
566 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) ==
572 dictionary_, IdToKey(ast_id), handle(target, isolate())));
type-info.h 125 Handle<UnseededNumberDictionary> dictionary_; member in class:v8::internal::TypeFeedbackOracle

Completed in 3538 milliseconds