Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefobject_fuzzer/
Djsvaluerefobject_fuzzer.cpp117 obj->IsGeneratorFunction(vm); in IsGeneratorFunctionFuzzTest()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1130 inline bool JSTaggedValue::IsGeneratorFunction() const in IsGeneratorFunction() function
1132 return IsHeapObject() && GetTaggedObject()->GetClass()->IsGeneratorFunction(); in IsGeneratorFunction()
Djs_function.h372 CAST_CHECK(JSGeneratorFunction, IsGeneratorFunction);
Djs_tagged_value.h581 bool IsGeneratorFunction() const;
Djs_hclass.h1533 inline bool IsGeneratorFunction() const in IsGeneratorFunction() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp350 return IsGeneratorFunction(vm); in IsGenerator()
DREADME.md2837 ### IsGeneratorFunction subsection
2839 bool IsGeneratorFunction();
2861 bool result = res->IsGeneratorFunction();
Djsnapi_expo.cpp901 bool JSValueRef::IsGeneratorFunction(const EcmaVM *vm) in IsGeneratorFunction() function in panda::JSValueRef
904 return JSNApiHelper::ToJSTaggedValue(this).IsGeneratorFunction(); in IsGeneratorFunction()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_third_tests.cpp876 ASSERT_FALSE(obj->IsGeneratorFunction(vm_)); in HWTEST_F_L0()
Dffi_workload.cpp504 genObject->IsGeneratorFunction(vm_); in HWTEST_F_L0()
507 TEST_TIME(JSValueRef::IsGeneratorFunction); in HWTEST_F_L0()
517 obj->IsGeneratorFunction(vm_); in HWTEST_F_L0()
520 TEST_TIME(JSValueRef::IsGeneratorFunction); in HWTEST_F_L0()
Djsnapi_first_tests.cpp1769 ASSERT_TRUE(res->IsGeneratorFunction(vm_)); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp221 } else if (value->IsGeneratorFunction(vm_)) { in GetProperties()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h566 bool IsGeneratorFunction(const EcmaVM *vm);
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp133 if (tagged->IsGeneratorFunction(ecmaVm)) { in FromTagged()