Home
last modified time | relevance | path

Searched refs:IsGeneratorObject (Results 1 – 17 of 17) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_generator.cpp39 if (!msg->IsGeneratorObject()) { in GeneratorPrototypeNext()
60 if (!msg->IsGeneratorObject()) { in GeneratorPrototypeReturn()
85 if (!msg->IsGeneratorObject()) { in GeneratorPrototypeThrow()
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefisgenerator_fuzzer/
Djsvaluerefisgenerator_fuzzer.cpp51 genObjectRef->IsGeneratorObject(); in IsGeneratorObjectFuzzTest()
/arkcompiler/ets_runtime/ecmascript/
Djs_generator_object.h58 CAST_CHECK(JSGeneratorObject, IsGeneratorObject);
Djs_generator_object.cpp32 if (!toObj->IsGeneratorObject()) { in GeneratorValidate()
Djs_object-inl.h158 inline bool JSObject::IsGeneratorObject() const in IsGeneratorObject() function
160 return GetJSHClass()->IsGeneratorObject(); in IsGeneratorObject()
Djs_tagged_value-inl.h1265 inline bool JSTaggedValue::IsGeneratorObject() const in IsGeneratorObject() function
1267 return IsHeapObject() && GetTaggedObject()->GetClass()->IsGeneratorObject(); in IsGeneratorObject()
Djs_tagged_value.h539 bool IsGeneratorObject() const;
Djs_object.h610 bool IsGeneratorObject() const;
Djs_hclass.h1351 inline bool IsGeneratorObject() const in IsGeneratorObject() function
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_third_tests.cpp193 ASSERT_TRUE(genObjectRef->IsGeneratorObject()); in HWTEST_F_L0()
Dffi_workload.cpp5776 ASSERT_TRUE(genObjectRef->IsGeneratorObject()); in HWTEST_F_L0()
5779 TEST_TIME(JSValueRef::IsGeneratorObject); in HWTEST_F_L0()
5789 ASSERT_FALSE(object->IsGeneratorObject()); in HWTEST_F_L0()
5792 TEST_TIME(JSValueRef::IsGeneratorObject); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp192 } else if (value->IsGeneratorObject()) { in GetProperties()
/arkcompiler/ets_runtime/ecmascript/napi/
DJSNapi接口说明.md1835 ### IsGeneratorObject subsection
1837 bool JSValueRef::IsGeneratorObject()��
1869 bool b = genObjectRef->IsGeneratorObject();
Djsnapi_expo.cpp639 bool JSValueRef::IsGeneratorObject() in IsGeneratorObject() function in panda::JSValueRef
641 return JSNApiHelper::ToJSTaggedValue(this).IsGeneratorObject(); in IsGeneratorObject()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h453 bool IsGeneratorObject();
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h1166 if (genObj->IsGeneratorObject()) { in RuntimeSuspendGenerator()
2565 if (genObj->IsGeneratorObject()) { in RuntimeOptSuspendGenerator()
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp422 if (tagged->IsGeneratorObject()) { in DescriptionForObject()