Home | History | Annotate | Download | only in mirror

Lines Matching refs:signature

362 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const StringPiece& signature) {
364 ArtMethod* method = FindDeclaredVirtualMethod(name, signature);
372 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature);
380 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const Signature& signature) {
382 ArtMethod* method = FindDeclaredVirtualMethod(name, signature);
390 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature);
416 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const StringPiece& signature) {
419 if (name == method->GetName() && method->GetSignature() == signature) {
426 Signature& signature) {
429 if (name == method->GetName() && signature == method->GetSignature()) {
448 ArtMethod* Class::FindDirectMethod(const StringPiece& name, const StringPiece& signature) {
450 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature);
458 ArtMethod* Class::FindDirectMethod(const StringPiece& name, const Signature& signature) {
460 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature);
478 ArtMethod* Class::FindDeclaredVirtualMethod(const StringPiece& name, const StringPiece& signature) {
481 if (name == method->GetName() && method->GetSignature() == signature) {
488 ArtMethod* Class::FindDeclaredVirtualMethod(const StringPiece& name, const Signature& signature) {
491 if (name == method->GetName() && signature == method->GetSignature()) {
512 ArtMethod* Class::FindVirtualMethod(const StringPiece& name, const StringPiece& signature) {
514 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature);
522 ArtMethod* Class::FindVirtualMethod(const StringPiece& name, const Signature& signature) {
524 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature);