Home
last modified time | relevance | path

Searched refs:map_ (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dsafe_map.h51 : map_(cmp, allocator) { in map_() function
55 map_ = rhs.map_;
59 allocator_type get_allocator() const { return map_.get_allocator(); } in get_allocator()
60 key_compare key_comp() const { return map_.key_comp(); } in key_comp()
61 value_compare value_comp() const { return map_.value_comp(); } in value_comp()
63 iterator begin() { return map_.begin(); } in begin()
64 const_iterator begin() const { return map_.begin(); } in begin()
65 iterator end() { return map_.end(); } in end()
66 const_iterator end() const { return map_.end(); } in end()
68 bool empty() const { return map_.empty(); } in empty()
[all …]
Ddex_reference_collection.h45 : map_(map_allocator), in map_() function
53 return map_; in GetMap()
58 for (auto&& pair : map_) { in NumReferences()
65 DexFileMap map_;
76 current_vector_ = &map_.emplace(dex, IndexVector(vector_allocator_)).first->second; in GetOrInsertVector()
Delf_file_impl.h69 return map_->Begin(); in Begin()
73 return map_->End(); in End()
77 return map_->Size(); in Size()
200 std::unique_ptr<MemMap> map_; variable
Delf_file.cc428 map_.reset(map); in SetMap()
429 CHECK(map_.get() != nullptr) << file->GetPath(); in SetMap()
430 CHECK(map_->Begin() != nullptr) << file->GetPath(); in SetMap()
432 header_ = reinterpret_cast<Elf_Ehdr*>(map_->Begin()); in SetMap()
/art/runtime/base/
Darena_allocator.cc239 std::unique_ptr<MemMap> map_; member in art::FINAL
247 map_.reset(MemMap::MapAnonymous( in MemMapArena()
249 CHECK(map_.get() != nullptr) << error_msg; in MemMapArena()
250 memory_ = map_->Begin(); in MemMapArena()
254 size_ = map_->Size(); in MemMapArena()
263 map_->MadviseDontNeedAndZero(); in Release()
Dvariant_map.h244 ScopedRemove(VariantMap& map, const TKey<TValue>& key) : map_(map), key_(key) {} in ScopedRemove()
246 map_.Remove(key_); in ~ScopedRemove()
249 VariantMap& map_; member
/art/compiler/optimizing/
Dinduction_var_analysis.h122 return map_.find(instruction) != map_.end(); in IsVisitedNode()
250 ArenaSafeMap<HInstruction*, NodeInfo> map_; variable
Dinduction_var_analysis.cc98 map_(std::less<HInstruction*>(), in HInductionVarAnalysis()
127 map_.clear(); in VisitLoop()
151 map_.clear(); in VisitLoop()
159 map_.Put(instruction, NodeInfo(d1)); in VisitNode()
170 map_.find(instruction)->second.depth = low; in VisitNode()
180 map_.find(x)->second.done = true; in VisitNode()
212 return map_.find(instruction)->second.depth; in VisitDescendant()
214 auto it = map_.find(instruction); in VisitDescendant()
/art/dexlayout/
Ddexdiag.cc85 map_[it->first] = 0; in PageCount()
89 map_[type]++; in Increment()
92 return map_.at(type); in Get()
95 std::map<uint16_t, size_t> map_; member in art::PageCount