Searched refs:proto_id_ (Results 1 – 3 of 3) sorted by relevance
34 return proto_id_ == rhs.proto_id_;37 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,43 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,51 const dex::TypeId& return_type_id = dex_file_->GetTypeId(proto_id_->return_type_idx_);53 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);60 const dex::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);61 const dex::TypeList* rhs_params = rhs.dex_file_->GetProtoParameters(*rhs.proto_id_);
32 CHECK(proto_id_ == nullptr); in ToString()35 const TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in ToString()46 result += dex_file_->StringByTypeIdx(proto_id_->return_type_idx_); in ToString()51 const TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in GetNumberOfParameters()56 const char* return_type = dex_file_->GetReturnTypeDescriptor(*proto_id_); in IsVoid()69 const TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in operator ==()83 return tail == dex_file_->StringByTypeIdx(proto_id_->return_type_idx_); in operator ==()
55 Signature(const DexFile* dex, const dex::ProtoId& proto) : dex_file_(dex), proto_id_(&proto) { in Signature()63 const dex::ProtoId* proto_id_ = nullptr; variable