Home
last modified time | relevance | path

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

/art/runtime/mirror/
Ddex_cache_test.cc148 class_linker_->ResolveMethodType(dex_file, method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
150 class_linker_->ResolveMethodType(dex_file, method2_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
152 EXPECT_EQ(method1_type.Get(), dex_cache->GetResolvedMethodType(method1_id.proto_idx_)); in TEST_F()
153 EXPECT_EQ(method2_type.Get(), dex_cache->GetResolvedMethodType(method2_id.proto_idx_)); in TEST_F()
163 if (pair.index == method1_id.proto_idx_) { in TEST_F()
165 } else if (pair.index == method2_id.proto_idx_) { in TEST_F()
/art/runtime/
Ddex_file-inl.h96 return Signature(this, GetProtoId(method_id.proto_idx_)); in GetMethodSignature()
108 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_); in GetMethodShorty()
112 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); in GetMethodShorty()
117 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length); in GetMethodShorty()
Dart_method.cc177 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_; in HasSameNameAndSignature()
242 other_dexfile.GetProtoId(name_and_sig_mid.proto_idx_)); in FindDexMethodIndexInOtherDexFile()
Ddex_file_verifier_test.cc169 method_id->proto_idx_ = 0xFF; in TEST_F()
1436 CHECK_EQ(dex_file->GetMethodId(method_idx).proto_idx_ + 1u, in TEST_F()
1437 dex_file->GetMethodId(method_idx + 1).proto_idx_); in TEST_F()
1439 uint32_t proto1_idx = dex_file->GetMethodId(method_idx).proto_idx_; in TEST_F()
Ddex_file.h187 uint16_t proto_idx_; // index into proto_ids_ array for method prototype member
680 return GetProtoId(method_id.proto_idx_); in GetMethodPrototype()
Ddex_file_verifier.cc2200 if (UNLIKELY(!CheckIndex(item->proto_idx_, dex_file_->NumProtoIds(), in CheckInterMethodIdItem()
2216 if (UNLIKELY(prev_item->proto_idx_ >= item->proto_idx_)) { in CheckInterMethodIdItem()
3243 const DexFile::ProtoId* const proto_id = CheckLoadProtoId(method_id->proto_idx_, in CheckConstructorProperties()
Ddex_file_test.cc500 const DexFile::ProtoId& signature = java_lang_dex_file_->GetProtoId(to_find.proto_idx_); in TEST_F()
Dclass_linker_test.cc1507 class_linker_->ResolveMethodType(dex_file, method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
1520 class_linker_->ResolveMethodType(dex_file, method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
1531 class_linker_->ResolveMethodType(dex_file, method2_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
Ddex_file.cc738 if (proto_idx > method.proto_idx_) { in FindMethodId()
740 } else if (proto_idx < method.proto_idx_) { in FindMethodId()
Dclass_linker.cc3324 if (strcmp("V", dex_file.GetShorty(method_id.proto_idx_)) == 0) { in LoadMethod()
5733 return mid_->name_idx_ == other_mid.name_idx_ && mid_->proto_idx_ == other_mid.proto_idx_; in HasSameNameAndSignature()
/art/runtime/verifier/
Dmethod_verifier.cc2917 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
2941 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
3016 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
3071 dex_file_->GetProtoId(method_id.proto_idx_).return_type_idx_; in CodeFlowVerifyInstruction()
4133 dex_file_->GetProtoId(dex_file_->GetMethodId(method_idx).proto_idx_)); in VerifyInvocationArgsUnresolvedMethod()
/art/dexlayout/
Ddex_ir.cc385 GetProtoId(disk_method_id.proto_idx_), in CreateMethodId()