/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
H A D | ets_method_signature_test.cpp | 28 EXPECT_EQ(minimal.GetProto(), Method::Proto( in MethodSignaturePrologue() 34 EXPECT_EQ(minimalint.GetProto(), Method::Proto( in MethodSignaturePrologue() 42 EXPECT_EQ(simple.GetProto(), Method::Proto( in MethodSignaturePrologue() 87 EXPECT_EQ(arrays.GetProto(), Method::Proto( in TEST_F() 103 EXPECT_EQ(multiarr.GetProto(), Method::Proto( in TEST_F() 113 EXPECT_EQ(big.GetProto(), Method::Proto( in TEST_F()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
H A D | ets_method.cpp | 77 auto proto = GetPandaMethod()->GetProto(); in GetNumArgSlots() 111 auto proto = GetPandaMethod()->GetProto(); in ResolveArgType() 148 auto proto = GetPandaMethod()->GetProto(); in GetMethodSignature()
|
H A D | ets_method.h | 143 Method::Proto proto = GetPandaMethod()->GetProto(); in ResolveReturnType() 298 return GetPandaMethod()->GetProto().GetReturnTypeDescriptor(); in GetReturnTypeDescriptor()
|
H A D | ets_class.cpp | 105 auto coreMethod = GetRuntimeClass()->GetDirectMethod(name, methodSignature.GetProto()); in GetDirectMethod() 156 coreMethod = runtimeClass->GetInterfaceMethod(coreName, methodSignature.GetProto()); in GetMethod() 158 coreMethod = runtimeClass->GetClassMethod(coreName, methodSignature.GetProto()); in GetMethod()
|
H A D | ets_method_signature.h | 80 Method::Proto &GetProto() in GetProto() function in ark::ets::EtsMethodSignature
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_sharedobject_test.cpp | 49 ASSERT_TRUE(hclass->GetProto().IsNull()); in HWTEST_F_L0() 64 auto proto = ctorHClass->GetProto(); in HWTEST_F_L0() 73 auto sObjProto = protoHClass->GetProto(); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
H A D | ets_runtime_interface.cpp | 143 MethodCast(method)->GetProto().GetSignature() == "([Lstd/core/String;)Lstd/core/String;"; in IsMethodStringConcat() 149 MethodCast(method)->GetProto().GetSignature() == "(Lstd/core/String;)V"; in IsMethodStringBuilderConstructorWithStringArg() 155 MethodCast(method)->GetProto().GetSignature() == "([C)V"; in IsMethodStringBuilderConstructorWithCharArrayArg() 161 MethodCast(method)->GetProto().GetSignature() == "()V"; in IsMethodStringBuilderDefaultConstructor() 167 MethodCast(method)->GetProto().GetSignature() == "()Lstd/core/String;"; in IsMethodStringBuilderToString()
|
/arkcompiler/runtime_core/static_core/static_linker/ |
H A D | linker_context.cpp | 223 auto [proto, params] = GetProto(oi->GetProto()); in MergeMethod() 346 auto op = fm->GetProto(); in TryFindMethod() 352 auto np = nm->GetProto(); in TryFindMethod() 430 auto proto = GetProto(fm->GetProto()).first; in MergeForeignMethodCreate() 593 std::pair<panda_file::ProtoItem *, std::vector<panda_file::MethodParamItem>> Context::GetProto(panda_file::ProtoItem *p) in GetProto() function in ark::static_linker::Context
|
H A D | linker_context_misc.cpp | 232 ReprMethod(o, j->GetNameItem(), j->GetClassItem(), j->GetProto()); in ReprItem() 237 ReprMethod(o, j->GetNameItem(), j->GetClassItem(), j->GetProto()); in ReprItem()
|
H A D | linker_context.h | 226 std::pair<panda_file::ProtoItem *, std::vector<panda_file::MethodParamItem>> GetProto(panda_file::ProtoItem *p);
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_hclass-inl.h | 317 auto proto = hclass->GetProto(); in FindProtoHClass() 327 auto proto = hclass->GetProto(); in FindProtoRootHClass()
|
H A D | js_function.cpp | 365 JSTaggedValue ctorProto = JSHClass::Cast(ctorProtoOrHclass->GetTaggedObject())->GetProto(); in OrdinaryHasInstance()
|
H A D | js_hclass.h | 2028 return GetProto();
|
/arkcompiler/runtime_core/static_core/runtime/hotreload/ |
H A D | hotreload.cpp | 410 if (oldMethod.GetProto() == newMethod.GetProto() && in MethodChangesCheck()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | method.cpp | 339 Method::Proto Method::GetProto() const in GetProto() function in ark::Method
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_profiler.cpp | 70 protoOrHClass = ihc->GetProto(); in ProfileDefineClass() 1359 protoOrHClass = ihc->GetProto(); in DumpDefineClass() 2116 currObj = currHC->GetProto().GetTaggedObject(); in TryFindKeyInPrototypeChain()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ |
H A D | ts2ets_copy.cpp | 669 panda_file::Type retType = method->GetProto().GetReturnType(); in GetJsRef()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | method.h | 464 PANDA_PUBLIC_API Proto GetProto() const;
|
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/ |
H A D | snapshot_constantpool_data.cpp | 195 prototype = JSHandle<JSObject>(thread, ihclass->GetProto()); in CheckAOTIhcPropertiesForRep()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | class_linker_test.cpp | 664 if (signature != method->GetProto().GetSignature()) { in GetMethod()
|
/arkcompiler/ets_runtime/ecmascript/jit/ |
H A D | jit_profiler.cpp | 867 currObj = currHC->GetProto().GetTaggedObject(); in TryFindKeyInPrototypeChain()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | class_info_extractor.cpp | 502 prototype = JSHandle<JSObject>(thread, ihclass->GetProto()); in DefineClassWithIHClass()
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | file_items.h | 759 ProtoItem *GetProto() const in GetProto() function in panda::panda_file::ClassTag::MethodTag::FieldTag::FunctionKind::ItemRank::BaseMethodItem
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | file_items.h | 770 ProtoItem *GetProto() const in GetProto() function in ark::panda_file::ClassTag::MethodTag::FieldTag::BaseMethodItem
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | shared_builtins.cpp | 785 SetSFunctionPrototype(ctor, protoHClass->GetProto()); in InitializeSCtor()
|