Lines Matching refs:dex_file_
149 if (dex_file_ == nullptr) {
150 return rhs.dex_file_ == nullptr;
152 if (rhs.dex_file_ == nullptr) {
155 if (dex_file_ == rhs.dex_file_) {
159 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,
165 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
173 const DexFile::TypeId& return_type_id = dex_file_->GetTypeId(proto_id_->return_type_idx_);
175 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
176 if (!DexFileStringEquals(dex_file_, return_type_id.descriptor_idx_,
177 rhs.dex_file_, rhs_return_type_id.descriptor_idx_)) {
182 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
183 const DexFile::TypeList* rhs_params = rhs.dex_file_->GetProtoParameters(*rhs.proto_id_);
190 const DexFile::TypeId& param_id = dex_file_->GetTypeId(params->GetTypeItem(i).type_idx_);
192 rhs.dex_file_->GetTypeId(rhs_params->GetTypeItem(i).type_idx_);
193 if (!DexFileStringEquals(dex_file_, param_id.descriptor_idx_,
194 rhs.dex_file_, rhs_param_id.descriptor_idx_)) {