Home
last modified time | relevance | path

Searched refs:collection_ (Results 1 – 2 of 2) sorted by relevance

/art/dexlayout/
Ddex_ir.h237 collection_.reserve(size); in CollectionVector()
244 collection_.push_back(std::unique_ptr<T>(object)); in CreateAndAddItem()
248 uint32_t Size() const override { return collection_.size(); } in Size()
250 Iterator<ElementType> begin() const { return Iterator<ElementType>(collection_, 0U, Size()); } in begin()
251 Iterator<ElementType> end() const { return Iterator<ElementType>(collection_, Size(), Size()); } in end()
255 return collection_[index];
259 return collection_[index];
270 collection_[i].release(); in SortByMapOrder()
271 collection_[i].reset(it->second); in SortByMapOrder()
277 std::vector<ElementType> collection_;
[all …]
Ddex_ir_builder.cc116 auto it = collection_.find(offset); in GetExistingObject()
117 return it != collection_.end() ? it->second : nullptr; in GetExistingObject()
123 uint32_t size() const { return collection_.size(); } in size()
124 std::map<uint32_t, T*>& Collection() { return collection_; } in Collection()
127 std::map<uint32_t, T*> collection_; member in art::dex_ir::CollectionMap
132 auto it = collection_.emplace(offset, object); in AddItem()