Home
last modified time | relevance | path

Searched refs:method_ids_ (Results 1 – 4 of 4) sorted by relevance

/art/dexlayout/
Ddex_ir.h214 CollectionVector<MethodId>::Vector& MethodIds() { return method_ids_.Collection(); } in MethodIds()
312 uint32_t MethodIdsOffset() const { return method_ids_.GetOffset(); } in MethodIdsOffset()
333 void SetMethodIdsOffset(uint32_t new_offset) { method_ids_.SetOffset(new_offset); } in SetMethodIdsOffset()
358 uint32_t MethodIdsSize() const { return method_ids_.Size(); } in MethodIdsSize()
435 IndexedCollectionVector<MethodId> method_ids_; variable
1039 method_ids_(std::move(method_ids)), in CodeFixups()
1044 const std::vector<MethodId*>& MethodIds() const { return method_ids_; } in MethodIds()
1050 std::vector<MethodId*> method_ids_; variable
Ddex_ir.cc358 AddIndexedItem(method_ids_, method_id, MethodIdsOffset() + i * MethodId::ItemSize(), i); in CreateMethodId()
/art/libdexfile/dex/
Ddex_file.h594 return method_ids_[idx]; in GetMethodId()
598 CHECK_GE(&method_id, method_ids_) << GetLocation(); in GetIndexForMethodId()
599 CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation(); in GetIndexForMethodId()
600 return &method_id - method_ids_; in GetIndexForMethodId()
1074 const MethodId* const method_ids_; variable
Ddex_file.cc115 method_ids_(reinterpret_cast<const MethodId*>(base + header_->method_ids_off_)), in DexFile()