Lines Matching refs:method
363 ArtMethod* method = FindDeclaredVirtualMethod(name, signature); in FindInterfaceMethod() local
364 if (method != nullptr) { in FindInterfaceMethod()
365 return method; in FindInterfaceMethod()
371 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature); in FindInterfaceMethod()
372 if (method != nullptr) { in FindInterfaceMethod()
373 return method; in FindInterfaceMethod()
381 ArtMethod* method = FindDeclaredVirtualMethod(name, signature); in FindInterfaceMethod() local
382 if (method != nullptr) { in FindInterfaceMethod()
383 return method; in FindInterfaceMethod()
389 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature); in FindInterfaceMethod()
390 if (method != nullptr) { in FindInterfaceMethod()
391 return method; in FindInterfaceMethod()
399 ArtMethod* method = FindDeclaredVirtualMethod(dex_cache, dex_method_idx); in FindInterfaceMethod() local
400 if (method != nullptr) { in FindInterfaceMethod()
401 return method; in FindInterfaceMethod()
407 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(dex_cache, dex_method_idx); in FindInterfaceMethod()
408 if (method != nullptr) { in FindInterfaceMethod()
409 return method; in FindInterfaceMethod()
417 ArtMethod* method = GetDirectMethod(i); in FindDeclaredDirectMethod() local
418 if (name == method->GetName() && method->GetSignature() == signature) { in FindDeclaredDirectMethod()
419 return method; in FindDeclaredDirectMethod()
427 ArtMethod* method = GetDirectMethod(i); in FindDeclaredDirectMethod() local
428 if (name == method->GetName() && signature == method->GetSignature()) { in FindDeclaredDirectMethod()
429 return method; in FindDeclaredDirectMethod()
438 ArtMethod* method = GetDirectMethod(i); in FindDeclaredDirectMethod() local
439 if (method->GetDexMethodIndex() == dex_method_idx) { in FindDeclaredDirectMethod()
440 return method; in FindDeclaredDirectMethod()
449 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature); in FindDirectMethod() local
450 if (method != nullptr) { in FindDirectMethod()
451 return method; in FindDirectMethod()
459 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature); in FindDirectMethod() local
460 if (method != nullptr) { in FindDirectMethod()
461 return method; in FindDirectMethod()
469 ArtMethod* method = klass->FindDeclaredDirectMethod(dex_cache, dex_method_idx); in FindDirectMethod() local
470 if (method != nullptr) { in FindDirectMethod()
471 return method; in FindDirectMethod()
479 ArtMethod* method = GetVirtualMethod(i); in FindDeclaredVirtualMethod() local
480 if (name == method->GetName() && method->GetSignature() == signature) { in FindDeclaredVirtualMethod()
481 return method; in FindDeclaredVirtualMethod()
489 ArtMethod* method = GetVirtualMethod(i); in FindDeclaredVirtualMethod() local
490 if (name == method->GetName() && signature == method->GetSignature()) { in FindDeclaredVirtualMethod()
491 return method; in FindDeclaredVirtualMethod()
500 ArtMethod* method = GetVirtualMethod(i); in FindDeclaredVirtualMethod() local
501 if (method->GetDexMethodIndex() == dex_method_idx && in FindDeclaredVirtualMethod()
504 !method->IsMiranda()) { in FindDeclaredVirtualMethod()
505 return method; in FindDeclaredVirtualMethod()
514 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature); in FindVirtualMethod() local
515 if (method != nullptr) { in FindVirtualMethod()
516 return method; in FindVirtualMethod()
524 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature); in FindVirtualMethod() local
525 if (method != nullptr) { in FindVirtualMethod()
526 return method; in FindVirtualMethod()
534 ArtMethod* method = klass->FindDeclaredVirtualMethod(dex_cache, dex_method_idx); in FindVirtualMethod() local
535 if (method != nullptr) { in FindVirtualMethod()
536 return method; in FindVirtualMethod()
544 ArtMethod* method = GetDirectMethod(i); in FindClassInitializer() local
545 if (method->IsClassInitializer()) { in FindClassInitializer()
546 DCHECK_STREQ(method->GetName(), "<clinit>"); in FindClassInitializer()
547 DCHECK_STREQ(method->GetSignature().ToString().c_str(), "()V"); in FindClassInitializer()
548 return method; in FindClassInitializer()
707 mirror::ArtMethod* method = methods->GetWithoutChecks(index); in SetPreverifiedFlagOnMethods() local
708 DCHECK(method != nullptr); in SetPreverifiedFlagOnMethods()
709 if (!method->IsNative() && !method->IsAbstract()) { in SetPreverifiedFlagOnMethods()
710 method->SetPreverified(); in SetPreverifiedFlagOnMethods()