/arkcompiler/ets_frontend/es2panda/ir/base/ |
D | property.h | 84 bool IsMethod() const in IsMethod() function
|
D | property.cpp | 61 if (!IsComputed() && !IsMethod() && !IsAccessor() && !IsShorthand()) { in ValidateExpression()
|
D | scriptFunction.h | 163 bool IsMethod() const in IsMethod() function
|
/arkcompiler/ets_frontend/ets2panda/ir/base/ |
D | property.h | 80 [[nodiscard]] bool IsMethod() const noexcept in IsMethod() function
|
D | property.cpp | 96 if (!IsComputed() && !IsMethod() && !IsAccessor() && !IsShorthand()) { in ValidateExpression()
|
D | scriptFunction.h | 177 [[nodiscard]] bool IsMethod() const noexcept in IsMethod() function
|
/arkcompiler/ets_frontend/es2panda/ir/expressions/ |
D | objectExpression.cpp | 254 if (prop->IsMethod()) { in CreateLiteral() 327 if (prop->IsMethod()) { in CompileStaticProperties() 375 if (prop->IsMethod()) { in CompilePropertyWithInit() 620 if (!prop->IsMethod()) { in GetFlagsForProperty()
|
/arkcompiler/ets_runtime/ecmascript/patch/ |
D | patch_loader.cpp | 210 ASSERT(value.IsMethod()); in GetPatchMethod() 272 if (!constpoolValue.IsMethod() && !constpoolValue.IsClassLiteral()) { in FindAndReplaceSameMethod() 277 if (constpoolValue.IsMethod()) { in FindAndReplaceSameMethod()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
D | pgo_profiler.cpp | 66 if (!ctorMethodValue.IsMethod()) { in ProfileDefineClass() 115 if (!ctorMethodValue.IsMethod()) { in ProfileClassRootHClass() 140 if (!methodValue.IsMethod()) { in ProfileDefineGetterSetter() 254 if (!methodValue.IsMethod()) { in PGODump() 335 if (!methodValue.IsMethod()) { in PGOPreDump() 394 if (!methodValue.IsMethod()) { in HandlePGOPreDump() 435 if (!methodValue.IsMethod()) { in HandlePGODump() 1053 if (!ctorMethod.IsMethod()) { in DumpDefineClass() 1528 if (jsMethod.IsMethod()) { in GetMethodAbcId() 1545 if (jsMethod.IsMethod()) { in GetRecordProfileType()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
D | ets_method.h | 47 PANDA_PUBLIC_API static bool IsMethod(const PandaString &td);
|
D | ets_method.cpp | 30 bool EtsMethod::IsMethod(const PandaString &td) in IsMethod() function in panda::ets::EtsMethod
|
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/ |
D | cpu_profiler.cpp | 278 if (method == nullptr || !JSTaggedValue(method).IsMethod()) { in GetStack() 344 if (method == nullptr || !JSTaggedValue(method).IsMethod()) { in GetStackCallNapi()
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | scope.cpp | 208 if (IsMethod(slot)) { in GetPrivateProperty() 212 return {slot, IsMethod(slot), IsStaticMethod(slot), getter, setter, validateMethodSlot}; in GetPrivateProperty()
|
D | scope.h | 719 bool IsMethod(uint32_t slot) const in IsMethod() function
|
/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/ |
D | opt_code_profiler.cpp | 143 if (!method.IsMethod()) { in Update()
|
/arkcompiler/ets_runtime/ecmascript/serializer/ |
D | base_serializer.cpp | 251 ASSERT(root->GetClass()->IsMethod()); in SerializeMethodFieldIndividually()
|
D | base_deserializer.cpp | 291 ASSERT(JSTaggedValue(static_cast<JSTaggedType>(objAddr)).IsMethod()); in ResetMethodConstantPool()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | method.h | 34 CAST_CHECK(Method, IsMethod);
|
D | js_tagged_value-inl.h | 721 inline bool JSTaggedValue::IsMethod() const in IsMethod() function 723 return IsHeapObject() && GetTaggedObject()->GetClass()->IsMethod(); in IsMethod()
|
D | js_tagged_value.h | 579 bool IsMethod() const;
|
D | js_hclass.h | 986 inline bool IsMethod() const in IsMethod() function
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_serializer_test.cpp | 734 EXPECT_TRUE(res.GetTaggedValue().IsMethod()) << "[NotMethod] Deserialize Method fail"; in MethodTest() 747 EXPECT_TRUE(res.GetTaggedValue().IsMethod()) << "[NotMethod] Deserialize Method fail"; in MethodTest1() 768 EXPECT_TRUE(res.GetTaggedValue().IsMethod()) << "[NotMethod] Deserialize Method fail"; in AOTMethodTest() 1887 EXPECT_TRUE(method.GetTaggedValue().IsMethod()); in HWTEST_F_L0() 1913 EXPECT_TRUE(method.GetTaggedValue().IsMethod()); in HWTEST_F_L0() 1950 EXPECT_TRUE(method.GetTaggedValue().IsMethod()); in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | helpers.cpp | 365 ASSERT(node->IsConstructor() || node->IsMethod()); in GetClassDefiniton()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | pandagen.cpp | 62 if (func->IsMethod() || func->IsConstructor()) { in SetFunctionKind() 75 if (func->IsMethod()) { in SetFunctionKind() 1399 if (realNode->IsMethod()) { in DefineFunction()
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
D | JSCompiler.cpp | 985 …alue()->IsFunctionExpression() && !prop->Value()->AsFunctionExpression()->Function()->IsMethod()) { in IsLiteralBufferCompatible() 1102 if (prop->IsMethod()) { in CompileRemainingProperties()
|