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.cpp112 obj->IsGeneratorFunction(); in IsGeneratorFunctionFuzzTest()
/arkcompiler/ets_runtime/ecmascript/
Djs_function.h261 CAST_CHECK(JSGeneratorFunction, IsGeneratorFunction);
Djs_tagged_value-inl.h1255 inline bool JSTaggedValue::IsGeneratorFunction() const in IsGeneratorFunction() function
1257 return IsHeapObject() && GetTaggedObject()->GetClass()->IsGeneratorFunction(); in IsGeneratorFunction()
Djs_tagged_value.h537 bool IsGeneratorFunction() const;
Djs_hclass.h1341 inline bool IsGeneratorFunction() const in IsGeneratorFunction() function
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp365 return IsGeneratorFunction(); in IsGenerator()
DJSNapi接口说明.md2835 ### IsGeneratorFunction subsection
2837 bool IsGeneratorFunction();
2859 bool result = res->IsGeneratorFunction();
Djsnapi_expo.cpp709 bool JSValueRef::IsGeneratorFunction() in IsGeneratorFunction() function in panda::JSValueRef
711 return JSNApiHelper::ToJSTaggedValue(this).IsGeneratorFunction(); in IsGeneratorFunction()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_third_tests.cpp842 ASSERT_FALSE(obj->IsGeneratorFunction()); in HWTEST_F_L0()
Djsnapi_first_tests.cpp1716 ASSERT_TRUE(res->IsGeneratorFunction()); in HWTEST_F_L0()
Dffi_workload.cpp504 genObject->IsGeneratorFunction(); in HWTEST_F_L0()
507 TEST_TIME(JSValueRef::IsGeneratorFunction); in HWTEST_F_L0()
517 obj->IsGeneratorFunction(); in HWTEST_F_L0()
520 TEST_TIME(JSValueRef::IsGeneratorFunction); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp190 } else if (value->IsGeneratorFunction()) { in GetProperties()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h457 bool IsGeneratorFunction();
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp133 if (tagged->IsGeneratorFunction()) { in FromTagged()