Home
last modified time | relevance | path

Searched refs:IsMethod (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler.cpp34 if (!JSFunction::Cast(calleeFunc)->GetMethod().IsMethod()) { in ProfileCall()
47 …ffset > 0 && currentFunc.IsJSFunction() && JSFunction::Cast(currentFunc)->GetMethod().IsMethod()) { in ProfileCall()
84 if (funcValue.IsJSFunction() && JSFunction::Cast(funcValue)->GetMethod().IsMethod()) { in ProfileOpType()
112 if (!method.IsMethod()) { in ProfileDefineClass()
124 if (!ctorMethod.IsMethod()) { in ProfileDefineClass()
136 if (superFuncFunction->GetMethod().IsMethod()) { in ProfileDefineClass()
174 if (!method.IsMethod()) { in ProfileCreateObject()
214 if (!method.IsMethod()) { in ProfileObjLayout()
267 if (!ctorMethod.IsMethod()) { in ProfileObjLayout()
/arkcompiler/ets_frontend/es2panda/ir/base/
DscriptFunction.h153 bool IsMethod() const in IsMethod() function
203 return !(IsGenerator() || IsArrow() || IsConstructor() || IsMethod()); in CanBeConcurrent()
Dproperty.h84 bool IsMethod() const in IsMethod() function
Dproperty.cpp61 if (!IsComputed() && !IsMethod() && !IsAccessor() && !IsShorthand()) { in ValidateExpression()
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp170 ASSERT(value.IsMethod()); in UnloadPatchInternal()
251 if (!constpoolValue.IsMethod() && !constpoolValue.IsClassLiteral()) { in FindAndReplaceSameMethod()
256 if (constpoolValue.IsMethod()) { in FindAndReplaceSameMethod()
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DobjectExpression.cpp253 if (prop->IsMethod()) { in CreateLiteral()
326 if (prop->IsMethod()) { in CompileStaticProperties()
393 if (prop->IsMethod()) { in CompileRemainingProperties()
597 if (!prop->IsMethod()) { in GetFlagsForProperty()
/arkcompiler/ets_runtime/ecmascript/
Dmethod.h33 CAST_CHECK(Method, IsMethod);
Djs_tagged_value-inl.h691 inline bool JSTaggedValue::IsMethod() const in IsMethod() function
693 return IsHeapObject() && GetTaggedObject()->GetClass()->IsMethod(); in IsMethod()
Djs_tagged_value.h629 bool IsMethod() const;
Djs_hclass.h874 inline bool IsMethod() const in IsMethod() function
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_serializer_test.cpp714 EXPECT_TRUE(res.GetTaggedValue().IsMethod()) << "[NotMethod] Deserialize Method fail"; in MethodTest()
727 EXPECT_TRUE(res.GetTaggedValue().IsMethod()) << "[NotMethod] Deserialize Method fail"; in MethodTest1()
1787 EXPECT_TRUE(method.GetTaggedValue().IsMethod()); in HWTEST_F_L0()
1813 EXPECT_TRUE(method.GetTaggedValue().IsMethod()); in HWTEST_F_L0()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp66 if (func->IsMethod()) { in SetFunctionKind()
1325 if (realNode->IsMethod()) { in DefineFunction()