Home
last modified time | relevance | path

Searched refs:IsAsyncGeneratorFunction (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefisasync_fuzzer/
Djsvaluerefisasync_fuzzer.cpp48 [[maybe_unused]] auto it = object->IsAsyncGeneratorFunction(vm); in JSValueRefIsAsyncGeneratorFunctionTrueFuzzTest()
66 object->IsAsyncGeneratorFunction(vm); in JSValueRefIsAsyncGeneratorFunctionFalseFuzzTest()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1135 inline bool JSTaggedValue::IsAsyncGeneratorFunction() const in IsAsyncGeneratorFunction() function
1137 return IsHeapObject() && GetTaggedObject()->GetClass()->IsAsyncGeneratorFunction(); in IsAsyncGeneratorFunction()
Djs_function.h559 CAST_CHECK(JSAsyncGeneratorFunction, IsAsyncGeneratorFunction);
Djs_tagged_value.h582 bool IsAsyncGeneratorFunction() const;
Djs_hclass.h1538 inline bool IsAsyncGeneratorFunction() const in IsAsyncGeneratorFunction() function
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h577 bool IsAsyncGeneratorFunction(const EcmaVM *vm);
/arkcompiler/ets_runtime/ecmascript/napi/test/
Dffi_workload.cpp3865 ASSERT_TRUE(object->IsAsyncGeneratorFunction(vm_)); in HWTEST_F_L0()
3868 TEST_TIME(JSValueRef::IsAsyncGeneratorFunction); in HWTEST_F_L0()
3879 ASSERT_FALSE(object->IsAsyncGeneratorFunction(vm_)); in HWTEST_F_L0()
3882 TEST_TIME(JSValueRef::IsAsyncGeneratorFunction); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp907 bool JSValueRef::IsAsyncGeneratorFunction(const EcmaVM *vm) in IsAsyncGeneratorFunction() function in panda::JSValueRef
910 return JSNApiHelper::ToJSTaggedValue(this).IsAsyncGeneratorFunction(); in IsAsyncGeneratorFunction()