Home
last modified time | relevance | path

Searched refs:proto_idx_ (Results 1 – 15 of 15) 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 (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()
Dclass.cc779 cmp_method_id.proto_idx_ == method_id.proto_idx_) { in FindClassMethod()
/art/libdexfile/dex/
Dmethod_reference.h66 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()
Ddex_file-inl.h117 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()
Ddex_file_structs.h91 dex::ProtoIndex proto_idx_; // index into proto_ids_ array for method prototype member
Ddex_file.cc297 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()
Ddex_file_verifier_test.cc169 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()
Dart_dex_file_loader_test.cc268 const dex::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_); in TEST_F()
Ddex_file_verifier.cc1283 !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()
Ddex_file.h378 return GetProtoId(method_id.proto_idx_); in GetMethodPrototype()
/art/runtime/
Dart_method.cc196 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()
Dclass_linker_test.cc1581 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()
Dclass_linker.cc3987 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/
Dmethod_verifier.cc2975 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/
Ddex_ir_builder.cc474 header_->ProtoIds()[disk_method_id.proto_idx_.index_], in CreateMethodId()