Home
last modified time | relevance | path

Searched refs:proto_id_ (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Ddex_file-inl.h68 return proto_id_ == rhs.proto_id_;
71 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,
77 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
85 const DexFile::TypeId& return_type_id = dex_file_->GetTypeId(proto_id_->return_type_idx_);
87 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
94 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
95 const DexFile::TypeList* rhs_params = rhs.dex_file_->GetProtoParameters(*rhs.proto_id_);
Ddex_file.cc1056 CHECK(proto_id_ == nullptr); in ToString()
1059 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in ToString()
1070 result += dex_file_->StringByTypeIdx(proto_id_->return_type_idx_); in ToString()
1083 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_); in operator ==()
1097 return tail == dex_file_->StringByTypeIdx(proto_id_->return_type_idx_); in operator ==()
Ddex_file.h1106 Signature(const DexFile* dex, const DexFile::ProtoId& proto) : dex_file_(dex), proto_id_(&proto) { in Signature()
1109 Signature() : dex_file_(nullptr), proto_id_(nullptr) { in Signature()
1115 const DexFile::ProtoId* const proto_id_; variable