Searched refs:proto_idx_ (Results 1 – 14 of 14) 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 (pair.index == method1_id.proto_idx_) { in TEST_F() 174 } else if (pair.index == method2_id.proto_idx_) { in TEST_F()
|
D | class.cc | 668 cmp_method_id.proto_idx_ == method_id.proto_idx_) { in FindClassMethod()
|
/art/libdexfile/dex/ |
D | method_reference.h | 66 const DexFile::ProtoId& prid1 = mr1.dex_file->GetProtoId(mid1.proto_idx_); in SlowCompare() 67 const DexFile::ProtoId& prid2 = mr2.dex_file->GetProtoId(mid2.proto_idx_); in SlowCompare()
|
D | dex_file-inl.h | 98 return Signature(this, GetProtoId(method_id.proto_idx_)); in GetMethodSignature() 110 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_); in GetMethodShorty() 114 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); in GetMethodShorty() 119 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length); in GetMethodShorty()
|
D | dex_file.cc | 300 if (proto_idx > method.proto_idx_) { in FindMethodId() 302 } else if (proto_idx < method.proto_idx_) { in FindMethodId() 579 const DexFile::ProtoId* proto_id = with_signature ? &GetProtoId(method_id.proto_idx_) : nullptr; in PrettyMethod()
|
D | dex_file_verifier_test.cc | 164 method_id->proto_idx_ = 0xFF; in TEST_F() 1428 CHECK_EQ(dex_file->GetMethodId(method_idx).proto_idx_ + 1u, in TEST_F() 1429 dex_file->GetMethodId(method_idx + 1).proto_idx_); in TEST_F() 1431 uint32_t proto1_idx = dex_file->GetMethodId(method_idx).proto_idx_; in TEST_F()
|
D | dex_file.h | 192 uint16_t proto_idx_; // index into proto_ids_ array for method prototype member 613 return GetProtoId(method_id.proto_idx_); in GetMethodPrototype()
|
D | dex_file_verifier.cc | 2223 if (UNLIKELY(!CheckIndex(item->proto_idx_, dex_file_->NumProtoIds(), in CheckInterMethodIdItem() 2239 if (UNLIKELY(prev_item->proto_idx_ >= item->proto_idx_)) { in CheckInterMethodIdItem() 3268 const DexFile::ProtoId* const proto_id = CheckLoadProtoId(method_id->proto_idx_, in CheckConstructorProperties()
|
/art/runtime/ |
D | art_method.cc | 202 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; in HasSameNameAndSignature() 264 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_)); in FindDexMethodIndexInOtherDexFile()
|
D | class_linker_test.cc | 1557 class_linker_->ResolveMethodType(soa.Self(), method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F() 1571 class_linker_->ResolveMethodType(soa.Self(), method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F() 1584 class_linker_->ResolveMethodType(soa.Self(), method2_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
|
D | class_linker.cc | 3313 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) { in LoadMethod() 5647 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()
|
/art/runtime/dex/ |
D | art_dex_file_loader_test.cc | 268 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_); in TEST_F()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 2904 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 2928 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 3005 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 3060 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction() 4061 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_)); in VerifyInvocationArgsUnresolvedMethod()
|
/art/dexlayout/ |
D | dex_ir.cc | 356 GetProtoId(disk_method_id.proto_idx_), in CreateMethodId()
|