Home
last modified time | relevance | path

Searched refs:orig_method (Results 1 – 2 of 2) sorted by relevance

/art/dexlayout/
Ddex_verify.cc390 dex_ir::MethodAnnotation* orig_method = (*orig)[i].get(); in VerifyMethodAnnotations() local
392 if (orig_method->GetMethodId()->GetIndex() != output_method->GetMethodId()->GetIndex()) { in VerifyMethodAnnotations()
396 orig_method->GetMethodId()->GetIndex(), in VerifyMethodAnnotations()
400 if (!VerifyAnnotationSet(orig_method->GetAnnotationSetItem(), in VerifyMethodAnnotations()
818 dex_ir::MethodItem* orig_method = &(*orig)[i]; in VerifyMethods() local
820 if (orig_method->GetMethodId()->GetIndex() != output_method->GetMethodId()->GetIndex()) { in VerifyMethods()
823 orig_method->GetMethodId()->GetIndex(), in VerifyMethods()
827 if (orig_method->GetAccessFlags() != output_method->GetAccessFlags()) { in VerifyMethods()
831 orig_method->GetAccessFlags(), in VerifyMethods()
835 if (!VerifyCode(orig_method->GetCodeItem(), output_method->GetCodeItem(), error_msg)) { in VerifyMethods()
/art/runtime/mirror/
Dclass.cc1272 static bool IsMethodPreferredOver(ArtMethod* orig_method, in IsMethodPreferredOver() argument
1279 if (orig_method == nullptr) { in IsMethodPreferredOver()
1291 DCHECK(!orig_method->IsDirect() || new_method->IsDirect()); in IsMethodPreferredOver()
1294 if (orig_method->IsSynthetic() && !new_method->IsSynthetic()) { in IsMethodPreferredOver()