Home
last modified time | relevance | path

Searched refs:IsGeneratorFunction (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_function.h246 CAST_CHECK(JSGeneratorFunction, IsGeneratorFunction);
Djs_tagged_value-inl.h1210 inline bool JSTaggedValue::IsGeneratorFunction() const in IsGeneratorFunction() function
1212 return IsHeapObject() && GetTaggedObject()->GetClass()->IsGeneratorFunction(); in IsGeneratorFunction()
Djs_tagged_value.h589 bool IsGeneratorFunction() const;
Djs_hclass.h1226 inline bool IsGeneratorFunction() const in IsGeneratorFunction() function
/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp224 } else if (value->IsGeneratorFunction()) { in GetProperties()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp2744 return IsGeneratorFunction(); in IsGenerator()
3389 bool JSValueRef::IsGeneratorFunction() in IsGeneratorFunction() function in panda::JSValueRef
3393 bool rst = obj->IsGeneratorFunction(); in IsGeneratorFunction()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h463 bool IsGeneratorFunction();
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp1345 ASSERT_TRUE(res->IsGeneratorFunction()); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp130 if (tagged->IsGeneratorFunction()) { in FromTagged()