Home
last modified time | relevance | path

Searched refs:proto_idx_ (Results 1 – 18 of 18) 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.cc748 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()
142 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_); in GetMethodShorty()
146 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); in GetMethodShorty()
152 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length); in GetMethodShorty()
Ddex_file.cc311 if (proto_idx > method.proto_idx_) { in FindMethodIdByIndex()
313 } else if (proto_idx < method.proto_idx_) { in FindMethodIdByIndex()
317 DCHECK_EQ(proto_idx, method.proto_idx_); in FindMethodIdByIndex()
547 const ProtoId* proto_id = with_signature ? &GetProtoId(method_id.proto_idx_) : nullptr; in AppendPrettyMethod()
Ddex_file_structs.h91 dex::ProtoIndex proto_idx_; // index into proto_ids_ array for method prototype member
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.cc277 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()
3663 DCHECK_LE(method_id.proto_idx_.index_, header_->proto_ids_size_); in CheckConstructorProperties()
Ddex_file.h393 return GetProtoId(method_id.proto_idx_); in GetMethodPrototype()
/art/runtime/
Dart_method.cc197 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; in HasSameNameAndSignature()
259 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_)); in FindDexMethodIndexInOtherDexFile()
Dclass_linker_test.cc1585 class_linker_->ResolveMethodType(soa.Self(), method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
1599 class_linker_->ResolveMethodType(soa.Self(), method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
1612 class_linker_->ResolveMethodType(soa.Self(), method2_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
Dclass_linker.cc3788 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) { in LoadMethod()
6357 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()
7497 PairType pair = std::make_pair(m_mid->name_idx_.index_, m_mid->proto_idx_.index_); in CheckVTableHasNoDuplicates()
9710 const dex::ProtoId& proto_id = dex_file->GetProtoId(method_id.proto_idx_); in ResolveMethodHandleForMethod()
/art/runtime/verifier/
Dmethod_verifier.cc2951 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
2975 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
3054 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
3111 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
4111 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()
/art/profman/
Dprofman.cc1295 const dex::ProtoIndex& method_proto = method_id.proto_idx_; in ResolveMethod()
Dprofile_assistant_test.cc1593 dex_file->GetProtoId(super_method_id.proto_idx_))); in TEST_F()
/art/compiler/optimizing/
Dnodes.h4788 proto_idx_(proto_idx) {
4793 dex::ProtoIndex GetProtoIndex() { return proto_idx_; }
4798 dex::ProtoIndex proto_idx_;