HomeSort by relevance Sort by last modified time
    Searched refs:dictionary_ (Results 1 - 8 of 8) 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/libweave/third_party/chromium/base/
values.cc 369 ValueMap::const_iterator current_entry = dictionary_.find(key);
370 DCHECK((current_entry == dictionary_.end()) || current_entry->second);
371 return current_entry != dictionary_.end();
375 ValueMap::iterator dict_iterator = dictionary_.begin();
376 while (dict_iterator != dictionary_.end()) {
381 dictionary_.clear();
436 dictionary_.insert(std::make_pair(key, bare_ptr));
611 ValueMap::const_iterator entry_iterator = dictionary_.find(key);
612 if (entry_iterator == dictionary_.end())
731 ValueMap::iterator entry_iterator = dictionary_.find(key)
    [all...]
values.h 221 size_t size() const { return dictionary_.size(); }
224 bool empty() const { return dictionary_.empty(); }
353 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); }
371 ValueMap dictionary_; member in class:base::DictionaryValue
  /external/libchrome/base/
values.cc 384 ValueMap::const_iterator current_entry = dictionary_.find(key);
385 DCHECK((current_entry == dictionary_.end()) || current_entry->second);
386 return current_entry != dictionary_.end();
390 ValueMap::iterator dict_iterator = dictionary_.begin();
391 while (dict_iterator != dictionary_.end()) {
396 dictionary_.clear();
456 dictionary_.insert(std::make_pair(key, bare_ptr));
645 ValueMap::const_iterator entry_iterator = dictionary_.find(key);
646 if (entry_iterator == dictionary_.end())
774 ValueMap::iterator entry_iterator = dictionary_.find(key)
    [all...]
values.h 227 size_t size() const { return dictionary_.size(); }
230 bool empty() const { return dictionary_.empty(); }
365 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); }
383 ValueMap dictionary_; member in class:base::DictionaryValue
  /external/v8/src/
type-info.cc 23 DCHECK(dictionary_->IsDictionary());
38 int entry = dictionary_->FindEntry(IdToKey(ast_id));
40 Object* value = dictionary_->ValueAt(entry);
411 dictionary_ = scope.CloseAndEscape(dictionary_);
428 dictionary_ = UnseededNumberDictionary::New(isolate(), infos->length());
472 DCHECK(dictionary_->FindEntry(IdToKey(ast_id)) ==
478 dictionary_, IdToKey(ast_id), handle(target, isolate())));
type-info.h 131 Handle<UnseededNumberDictionary> dictionary_; member in class:v8::internal::TypeFeedbackOracle

Completed in 373 milliseconds