Home | History | Annotate | Download | only in dex

Lines Matching refs:ref

51   MethodReference ref = method_verifier->GetMethodReference();
52 bool compile = IsCandidateForCompilation(ref, method_verifier->GetAccessFlags());
65 auto it = verified_methods_.find(ref);
69 << PrettyMethod(ref.dex_method_index, *ref.dex_file);
76 verified_methods_.Put(ref, verified_method);
77 DCHECK(verified_methods_.find(ref) != verified_methods_.end());
81 const VerifiedMethod* VerificationResults::GetVerifiedMethod(MethodReference ref) {
83 auto it = verified_methods_.find(ref);
87 void VerificationResults::RemoveVerifiedMethod(MethodReference ref) {
89 auto it = verified_methods_.find(ref);
96 void VerificationResults::AddRejectedClass(ClassReference ref) {
99 rejected_classes_.insert(ref);
101 DCHECK(IsClassRejected(ref));
104 bool VerificationResults::IsClassRejected(ClassReference ref) {
106 return (rejected_classes_.find(ref) != rejected_classes_.end());