Searched refs:proto_idx_ (Results 1 – 15 of 15) sorted by relevance
/art/runtime/mirror/ |
D | dex_cache_test.cc | 153 method1_id.proto_idx_, in TEST_F() 158 method2_id.proto_idx_, in TEST_F() 161 EXPECT_EQ(method1_type.Get(), dex_cache->GetResolvedMethodType(method1_id.proto_idx_)); in TEST_F() 162 EXPECT_EQ(method2_type.Get(), dex_cache->GetResolvedMethodType(method2_id.proto_idx_)); in TEST_F() 172 if (dex::ProtoIndex(pair.index) == method1_id.proto_idx_) { in TEST_F() 174 } else if (dex::ProtoIndex(pair.index) == method2_id.proto_idx_) { in TEST_F()
|
D | class.cc | 779 cmp_method_id.proto_idx_ == method_id.proto_idx_) { in FindClassMethod()
|
/art/libdexfile/dex/ |
D | method_reference.h | 66 const dex::ProtoId& prid1 = mr1.dex_file->GetProtoId(mid1.proto_idx_); in SlowCompare() 67 const dex::ProtoId& prid2 = mr2.dex_file->GetProtoId(mid2.proto_idx_); in SlowCompare()
|
D | dex_file-inl.h | 117 return Signature(this, GetProtoId(method_id.proto_idx_)); in GetMethodSignature() 138 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_); in GetMethodShorty() 142 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); in GetMethodShorty() 148 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length); in GetMethodShorty()
|
D | dex_file_structs.h | 91 dex::ProtoIndex proto_idx_; // index into proto_ids_ array for method prototype member
|
D | dex_file.cc | 297 if (proto_idx > method.proto_idx_) { in FindMethodId() 299 } else if (proto_idx < method.proto_idx_) { in FindMethodId() 528 const ProtoId* proto_id = with_signature ? &GetProtoId(method_id.proto_idx_) : nullptr; in PrettyMethod()
|
D | dex_file_verifier_test.cc | 169 method_id->proto_idx_ = dex::ProtoIndex(0xFF); in TEST_F() 1416 CHECK_EQ(dex_file->GetMethodId(method_idx).proto_idx_.index_ + 1u, in TEST_F() 1417 dex_file->GetMethodId(method_idx + 1).proto_idx_.index_); in TEST_F() 1419 dex::ProtoIndex proto1_idx = dex_file->GetMethodId(method_idx).proto_idx_; in TEST_F()
|
D | art_dex_file_loader_test.cc | 268 const dex::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_); in TEST_F()
|
D | dex_file_verifier.cc | 1283 !CheckIndex(method_id->proto_idx_.index_, header_->proto_ids_size_, "method_id.proto") || in CheckIntraMethodIdItem() 2675 if (UNLIKELY(!CheckIndex(item->proto_idx_.index_, dex_file_->NumProtoIds(), in CheckInterMethodIdItem() 2691 if (UNLIKELY(prev_item->proto_idx_ >= item->proto_idx_)) { in CheckInterMethodIdItem() 3664 DCHECK_LE(method_id.proto_idx_.index_, header_->proto_ids_size_); in CheckConstructorProperties()
|
D | dex_file.h | 378 return GetProtoId(method_id.proto_idx_); in GetMethodPrototype()
|
/art/runtime/ |
D | art_method.cc | 196 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; in HasSameNameAndSignature() 258 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_)); in FindDexMethodIndexInOtherDexFile()
|
D | class_linker_test.cc | 1581 class_linker_->ResolveMethodType(soa.Self(), method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F() 1595 class_linker_->ResolveMethodType(soa.Self(), method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F() 1608 class_linker_->ResolveMethodType(soa.Self(), method2_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
|
D | class_linker.cc | 3987 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) { in LoadMethod() 6414 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature() 7553 PairType pair = std::make_pair(m_mid->name_idx_.index_, m_mid->proto_idx_.index_); in CheckVTableHasNoDuplicates() 9458 const dex::ProtoId& proto_id = dex_file->GetProtoId(method_id.proto_idx_); in ResolveMethodHandleForMethod()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2975 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 2999 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 3078 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 3135 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 4175 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_)); in VerifyInvocationArgsUnresolvedMethod()
|
/art/dexlayout/ |
D | dex_ir_builder.cc | 474 header_->ProtoIds()[disk_method_id.proto_idx_.index_], in CreateMethodId()
|