Lines Matching refs:rhs
26 inline bool Signature::operator==(const Signature& rhs) const {
28 return rhs.dex_file_ == nullptr;
30 if (rhs.dex_file_ == nullptr) {
33 if (dex_file_ == rhs.dex_file_) {
34 return proto_id_ == rhs.proto_id_;
43 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
53 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
55 rhs.dex_file_, rhs_return_type_id.descriptor_idx_)) {
61 const dex::TypeList* rhs_params = rhs.dex_file_->GetProtoParameters(*rhs.proto_id_);
70 rhs.dex_file_->GetTypeId(rhs_params->GetTypeItem(i).type_idx_);
72 rhs.dex_file_, rhs_param_id.descriptor_idx_)) {