Lines Matching refs:rhs
60 inline bool Signature::operator==(const Signature& rhs) const {
62 return rhs.dex_file_ == nullptr;
64 if (rhs.dex_file_ == nullptr) {
67 if (dex_file_ == rhs.dex_file_) {
68 return proto_id_ == rhs.proto_id_;
77 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
87 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
89 rhs.dex_file_, rhs_return_type_id.descriptor_idx_)) {
95 const DexFile::TypeList* rhs_params = rhs.dex_file_->GetProtoParameters(*rhs.proto_id_);
104 rhs.dex_file_->GetTypeId(rhs_params->GetTypeItem(i).type_idx_);
106 rhs.dex_file_, rhs_param_id.descriptor_idx_)) {