Lines Matching defs:signature

337 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const StringPiece& signature,
340 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size);
348 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature, pointer_size);
356 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const Signature& signature,
359 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size);
367 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature, pointer_size);
395 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const StringPiece& signature,
398 if (name == method.GetName() && method.GetSignature() == signature) {
405 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const Signature& signature,
408 if (name == method.GetName() && signature == method.GetSignature()) {
427 ArtMethod* Class::FindDirectMethod(const StringPiece& name, const StringPiece& signature,
430 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size);
438 ArtMethod* Class::FindDirectMethod(const StringPiece& name, const Signature& signature,
441 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size);
474 ArtMethod* Class::FindDeclaredVirtualMethod(const StringPiece& name, const StringPiece& signature,
478 if (name == np_method->GetName() && np_method->GetSignature() == signature) {
485 ArtMethod* Class::FindDeclaredVirtualMethod(const StringPiece& name, const Signature& signature,
489 if (name == np_method->GetName() && signature == np_method->GetSignature()) {
519 const StringPiece& name, const StringPiece& signature, size_t pointer_size) {
521 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature, pointer_size);
530 const StringPiece& name, const Signature& signature, size_t pointer_size) {
532 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature, pointer_size);
579 // Iterate through every declared method on this interface. Each direct method's name/signature