Home
last modified time | relevance | path

Searched refs:proto_idx_ (Results 1 – 14 of 14) sorted by relevance

/art/runtime/mirror/
Ddex_cache_test.cc153 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()
Dclass.cc668 cmp_method_id.proto_idx_ == method_id.proto_idx_) { in FindClassMethod()
/art/libdexfile/dex/
Dmethod_reference.h66 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()
Ddex_file-inl.h98 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()
Ddex_file.cc300 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()
Ddex_file_verifier_test.cc164 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()
Ddex_file.h192 uint16_t proto_idx_; // index into proto_ids_ array for method prototype member
613 return GetProtoId(method_id.proto_idx_); in GetMethodPrototype()
Ddex_file_verifier.cc2223 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/
Dart_method.cc202 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()
Dclass_linker_test.cc1557 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()
Dclass_linker.cc3313 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/
Dart_dex_file_loader_test.cc268 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_); in TEST_F()
/art/runtime/verifier/
Dmethod_verifier.cc2904 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/
Ddex_ir.cc356 GetProtoId(disk_method_id.proto_idx_), in CreateMethodId()