Home
last modified time | relevance | path

Searched refs:GetMethodSignature (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/
Dets_method_test.cpp232 TEST_F(EtsMethodTest, GetMethodSignature) in TEST_F() argument
262 ASSERT_EQ(foo1Method->GetMethodSignature(), "I:LTestObject;"); in TEST_F()
263 ASSERT_EQ(foo2Method->GetMethodSignature(), "IFD:I"); in TEST_F()
264 ASSERT_EQ(foo3Method->GetMethodSignature(), "IIFDF:Z"); in TEST_F()
/arkcompiler/runtime_core/static_core/verification/jobs/
Djob.cpp39 ForAllCachedMethods([&](Method const *method) { types->GetMethodSignature(method); }); in UpdateTypes()
/arkcompiler/runtime_core/static_core/verification/type/
Dtype_system.h85 MethodSignature const *GetMethodSignature(Method const *method);
Dtype_system.cpp119 MethodSignature const *TypeSystem::GetMethodSignature(Method const *method) in GetMethodSignature() function in panda::verifier::TypeSystem
/arkcompiler/runtime_core/static_core/verification/absint/
Dabs_int_inl.cpp82 auto numAregs = GetTypeSystem()->GetMethodSignature(method)->args.size(); in SetReg()
Dabsint.cpp84 const auto &signature = typeSystem->GetMethodSignature(method); in PrepareVerificationContext()
Dabs_int_inl.h3153 auto const *sig = GetTypeSystem()->GetMethodSignature(method);
3322 const auto *methodSig = GetTypeSystem()->GetMethodSignature(method); in CheckCall()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
Dets_method.h301 PANDA_PUBLIC_API PandaString GetMethodSignature(bool includeReturnType = true) const;
Dets_method.cpp145 PandaString EtsMethod::GetMethodSignature(bool includeReturnType) const in GetMethodSignature() function in panda::ets::EtsMethod
/arkcompiler/runtime_core/static_core/plugins/ets/disassembler/
Ddisasm_ets_plugin.cpp144 const auto methodName = GetMethodSignature(methodId); in GetETSMetadata()
/arkcompiler/runtime_core/static_core/disassembler/
Ddisassembler.cpp1051 ss << GetMethodSignature(id); in ScalarValueToString()
1106 ss << GetMethodSignature(id); in ArrayValueToString()
1138 std::string Disassembler::GetMethodSignature(const panda_file::File::EntityId &methodId) const in GetMethodSignature() function in panda::disasm::Disassembler
1667 name << GetMethodSignature(id); in IDToString()
1801 const auto argMethodSignature = GetMethodSignature(argMethodId); in GetInstructions()
Ddisassembler.h131 std::string GetMethodSignature(const panda_file::File::EntityId &methodId) const;
/arkcompiler/runtime_core/disassembler/
Ddisassembler.h124 std::string GetMethodSignature(const panda_file::File::EntityId &method_id) const;
Ddisassembler.cpp1038 ss << GetMethodSignature(id); in ScalarValueToString()
1091 ss << GetMethodSignature(id); in ArrayValueToString()
1123 std::string Disassembler::GetMethodSignature(const panda_file::File::EntityId &method_id) const in GetMethodSignature() function in panda::disasm::Disassembler
1819 name << GetMethodSignature(offset); in IDToString()
1911 const auto arg_method_signature = GetMethodSignature(arg_method_id); in GetInstructions()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/
Dets_class_wrapper.cpp246 … INTEROP_LOG(ERROR) << "overload: " << EtsMethod::FromRuntimeMethod(&m)->GetMethodSignature(true); in CalculateProperties()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_vm.cpp499 signature.append(EtsMethod::FromRuntimeMethod(method)->GetMethodSignature(false)); in ResolveNativeMethod()