Home
last modified time | relevance | path

Searched refs:AsyncGeneratorReject (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_async_generator_object.h84 …static JSTaggedValue AsyncGeneratorReject(JSThread *thread, const JSHandle<JSAsyncGeneratorObject>…
Djs_async_generator_object.cpp90 JSTaggedValue JSAsyncGeneratorObject::AsyncGeneratorReject(JSThread *thread, in AsyncGeneratorReject() function in panda::ecmascript::JSAsyncGeneratorObject
206 AsyncGeneratorReject(thread, generator, comVal); in AsyncGeneratorResumeNext()
365 return AsyncGeneratorReject(thread, asyncGen, value); in ProcessorRejectedFunc()
Druntime_call_id.h229 V(AsyncGeneratorReject) \
/arkcompiler/ets_frontend/es2panda/compiler/function/
DasyncGeneratorFunctionBuilder.cpp51 pg_->AsyncGeneratorReject(node, funcObj_); in CleanUp()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.h176 static JSTaggedValue AsyncGeneratorReject(JSThread *thread, JSTaggedValue asyncFuncObj,
Dslow_runtime_stub.cpp1154 JSTaggedValue SlowRuntimeStub::AsyncGeneratorReject(JSThread *thread, JSTaggedValue asyncFuncObj, in AsyncGeneratorReject() function in panda::ecmascript::SlowRuntimeStub
1157 INTERPRETER_TRACE(thread, AsyncGeneratorReject); in AsyncGeneratorReject()
1163 return JSAsyncGeneratorObject::AsyncGeneratorReject(thread, asyncFuncObjHandle, valueHandle); in AsyncGeneratorReject()
Dinterpreter-inl.h3143 JSTaggedValue res = SlowRuntimeStub::AsyncGeneratorReject(thread, asyncGenerator, value); in RunInternal()
3158 JSTaggedValue res = SlowRuntimeStub::AsyncGeneratorReject(thread, asyncGenerator, value); in RunInternal()
Dinterpreter_assembly.cpp2760 JSTaggedValue res = SlowRuntimeStub::AsyncGeneratorReject(thread, asyncGenerator, value); in HandleAsyncgeneratorrejectV8()
2792 JSTaggedValue res = SlowRuntimeStub::AsyncGeneratorReject(thread, asyncGenerator, value); in HandleDeprecatedAsyncgeneratorrejectPrefV8V8()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h400 void AsyncGeneratorReject(const ir::AstNode *node, VReg asyncGenObj);
Dpandagen.cpp1456 void PandaGen::AsyncGeneratorReject(const ir::AstNode *node, VReg asyncGenObj) in AsyncGeneratorReject() function in panda::es2panda::compiler::PandaGen
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h275 V(AsyncGeneratorReject) \
Druntime_stubs.cpp668 DEF_RUNTIME_STUBS(AsyncGeneratorReject) in DEF_RUNTIME_STUBS() argument
670 RUNTIME_STUBS_HEADER(AsyncGeneratorReject); in DEF_RUNTIME_STUBS()
Druntime_stubs-inl.h382 … return JSAsyncGeneratorObject::AsyncGeneratorReject(thread, asyncGeneratorObjHandle, valueHandle); in RuntimeAsyncGeneratorReject()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.cpp2912 GateRef res = CallRuntime(glue, RTSTUB_ID(AsyncGeneratorReject), in DECLARE_ASM_HANDLER()
2930 GateRef res = CallRuntime(glue, RTSTUB_ID(AsyncGeneratorReject), in DECLARE_ASM_HANDLER()
Dslowpath_lowering.cpp2327 int id = RTSTUB_ID(AsyncGeneratorReject); in LowerAsyncGeneratorReject()