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

  /art/dexlayout/
dex_ir.h 172 std::vector<std::unique_ptr<MethodId>>& MethodIds() { return method_ids_.Collection(); }
261 uint32_t MethodIdsOffset() const { return method_ids_.GetOffset(); }
282 void SetMethodIdsOffset(uint32_t new_offset) { method_ids_.SetOffset(new_offset); }
307 uint32_t MethodIdsSize() const { return method_ids_.Size(); }
335 CollectionVector<MethodId> method_ids_; member in class:art::dex_ir::Collections
905 std::unique_ptr<std::vector<MethodId*>> method_ids_; member in class:art::dex_ir::CodeFixups
    [all...]
dex_ir.cc 387 method_ids_.AddIndexedItem(method_id, MethodIdsOffset() + i * MethodId::ItemSize(), i);
    [all...]
  /art/runtime/
dex_file.h 661 return method_ids_[idx];
665 CHECK_GE(&method_id, method_ids_) << GetLocation();
666 CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation();
667 return &method_id - method_ids_;
1208 const MethodId* const method_ids_; member in class:art::DexFile::MethodHandleType
    [all...]
dex_file.cc 536 method_ids_(reinterpret_cast<const MethodId*>(base + header_->method_ids_off_)),
    [all...]

Completed in 82 milliseconds