Lines Matching refs:proto_id
492 const Signature GetProtoSignature(const dex::ProtoId& proto_id) const;
568 const char* GetReturnTypeDescriptor(const dex::ProtoId& proto_id) const;
582 dex::ProtoIndex GetIndexForProtoId(const dex::ProtoId& proto_id) const { in GetIndexForProtoId() argument
583 CHECK_GE(&proto_id, proto_ids_) << GetLocation(); in GetIndexForProtoId()
584 CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation(); in GetIndexForProtoId()
585 return dex::ProtoIndex(&proto_id - proto_ids_); in GetIndexForProtoId()
605 std::string_view GetShortyView(const dex::ProtoId& proto_id) const;
607 const dex::TypeList* GetProtoParameters(const dex::ProtoId& proto_id) const { in GetProtoParameters() argument
608 return DataPointer<dex::TypeList>(proto_id.parameters_off_); in GetProtoParameters()
1034 DexFileParameterIterator(const DexFile& dex_file, const dex::ProtoId& proto_id) in DexFileParameterIterator() argument
1036 type_list_ = dex_file_.GetProtoParameters(proto_id); in DexFileParameterIterator()