Lines Matching refs:dex_file_
27 if (dex_file_ == nullptr) {
28 return rhs.dex_file_ == nullptr;
30 if (rhs.dex_file_ == nullptr) {
33 if (dex_file_ == rhs.dex_file_) {
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_);
54 if (!DexFile::StringEquals(dex_file_, return_type_id.descriptor_idx_,
55 rhs.dex_file_, rhs_return_type_id.descriptor_idx_)) {
60 const dex::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
61 const dex::TypeList* rhs_params = rhs.dex_file_->GetProtoParameters(*rhs.proto_id_);
68 const dex::TypeId& param_id = dex_file_->GetTypeId(params->GetTypeItem(i).type_idx_);
70 rhs.dex_file_->GetTypeId(rhs_params->GetTypeItem(i).type_idx_);
71 if (!DexFile::StringEquals(dex_file_, param_id.descriptor_idx_,
72 rhs.dex_file_, rhs_param_id.descriptor_idx_)) {