Lines Matching refs:name

162   String* name = h_this->GetName();  in ComputeName()  local
163 if (name != nullptr) { in ComputeName()
164 return name; in ComputeName()
186 name = String::AllocFromModifiedUtf8(self, c_name); in ComputeName()
190 name = String::AllocFromModifiedUtf8(self, DescriptorToDot(descriptor).c_str()); in ComputeName()
192 h_this->SetName(name); in ComputeName()
193 return name; in ComputeName()
348 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const StringPiece& signature, in FindInterfaceMethod() argument
351 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size); in FindInterfaceMethod()
359 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature, pointer_size); in FindInterfaceMethod()
367 ArtMethod* Class::FindInterfaceMethod(const StringPiece& name, const Signature& signature, in FindInterfaceMethod() argument
370 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size); in FindInterfaceMethod()
378 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature, pointer_size); in FindInterfaceMethod()
406 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const StringPiece& signature, in FindDeclaredDirectMethod() argument
409 if (name == method.GetName() && method.GetSignature() == signature) { in FindDeclaredDirectMethod()
416 ArtMethod* Class::FindDeclaredDirectMethod(const StringPiece& name, const Signature& signature, in FindDeclaredDirectMethod() argument
419 if (name == method.GetName() && signature == method.GetSignature()) { in FindDeclaredDirectMethod()
438 ArtMethod* Class::FindDirectMethod(const StringPiece& name, const StringPiece& signature, in FindDirectMethod() argument
441 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size); in FindDirectMethod()
449 ArtMethod* Class::FindDirectMethod(const StringPiece& name, const Signature& signature, in FindDirectMethod() argument
452 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size); in FindDirectMethod()
471 ArtMethod* Class::FindDeclaredVirtualMethod(const StringPiece& name, const StringPiece& signature, in FindDeclaredVirtualMethod() argument
475 if (name == np_method->GetName() && np_method->GetSignature() == signature) { in FindDeclaredVirtualMethod()
482 ArtMethod* Class::FindDeclaredVirtualMethod(const StringPiece& name, const Signature& signature, in FindDeclaredVirtualMethod() argument
486 if (name == np_method->GetName() && signature == np_method->GetSignature()) { in FindDeclaredVirtualMethod()
508 const StringPiece& name, const StringPiece& signature, size_t pointer_size) { in FindVirtualMethod() argument
510 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature, pointer_size); in FindVirtualMethod()
519 const StringPiece& name, const Signature& signature, size_t pointer_size) { in FindVirtualMethod() argument
521 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature, pointer_size); in FindVirtualMethod()
551 ArtField* Class::FindDeclaredInstanceField(const StringPiece& name, const StringPiece& type) { in FindDeclaredInstanceField() argument
556 if (name == f->GetName() && type == f->GetTypeDescriptor()) { in FindDeclaredInstanceField()
575 ArtField* Class::FindInstanceField(const StringPiece& name, const StringPiece& type) { in FindInstanceField() argument
579 ArtField* f = c->FindDeclaredInstanceField(name, type); in FindInstanceField()
599 ArtField* Class::FindDeclaredStaticField(const StringPiece& name, const StringPiece& type) { in FindDeclaredStaticField() argument
603 if (name == f->GetName() && type == f->GetTypeDescriptor()) { in FindDeclaredStaticField()
622 ArtField* Class::FindStaticField(Thread* self, Handle<Class> klass, const StringPiece& name, in FindStaticField() argument
628 ArtField* f = k->FindDeclaredStaticField(name, type); in FindStaticField()
639 f = FindStaticField(self, interface, name, type); in FindStaticField()
672 ArtField* Class::FindField(Thread* self, Handle<Class> klass, const StringPiece& name, in FindField() argument
677 ArtField* f = k->FindDeclaredInstanceField(name, type); in FindField()
681 f = k->FindDeclaredStaticField(name, type); in FindField()
691 f = interface->FindStaticField(self, interface, name, type); in FindField()