Home
last modified time | relevance | path

Searched refs:GetClassMethod (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tests/
Dgetmethod_test.cpp111 Method *method = klass->GetClassMethod(utf::CStringAsMutf8(methodsName[i].c_str()), proto); in TEST_F()
Dclass_linker_test.cpp924 auto f = klass->GetClassMethod(utf::CStringAsMutf8("f")); in CheckAccesses()
935 auto f = klass->GetClassMethod(utf::CStringAsMutf8("f")); in CheckAccesses()
946 auto f = klass->GetClassMethod(utf::CStringAsMutf8("f")); in CheckAccesses()
1112 auto f = klass->GetClassMethod(utf::CStringAsMutf8("f")); in TEST_F()
Dinterpreter_test.cpp382 Method *method = cls->GetClassMethod(utf::CStringAsMutf8("foo")); in TEST_F()
/arkcompiler/runtime_core/static_core/runtime/include/
Dclass-inl.h448 inline Method *Class::GetClassMethod(const uint8_t *mutf8Name, const Method::Proto &proto) const in GetClassMethod() function
451 return GetClassMethod(sd, proto); in GetClassMethod()
454 inline Method *Class::GetClassMethod(const panda_file::File::StringData &sd, const Method::Proto &p… in GetClassMethod() function
506 inline Method *Class::GetClassMethod(const uint8_t *mutf8Name) const in GetClassMethod() function
Dclass.h604 Method *GetClassMethod(const uint8_t *mutf8Name, const Method::Proto &proto) const;
606 … Method *GetClassMethod(const panda_file::File::StringData &sd, const Method::Proto &proto) const;
622 Method *GetClassMethod(const uint8_t *mutf8Name) const;
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
Dets_class.cpp138 coreMethod = runtimeClass->GetClassMethod(coreName); in GetMethod()
158 coreMethod = runtimeClass->GetClassMethod(coreName, methodSignature.GetProto()); in GetMethod()
/arkcompiler/runtime_core/static_core/runtime/
Dcompiler.cpp399 method = klass->GetClassMethod(name.data, proto); in IsMethodIntrinsic()