Home
last modified time | relevance | path

Searched refs:argsArray (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_function.cpp182 JSHandle<TaggedArray> argsArray = factory->NewTaggedArray(argsLength); in FunctionPrototypeBind() local
184 argsArray->Set(thread, index, GetCallArg(argv, index + 1)); in FunctionPrototypeBind()
187 return FunctionPrototypeBindInternal(thread, target, thisArg, argsArray); in FunctionPrototypeBind()
192 JSHandle<TaggedArray> argsArray) in FunctionPrototypeBindInternal() argument
203 … JSHandle<JSBoundFunction> boundFunction = factory->NewJSBoundFunction(target, thisArg, argsArray); in FunctionPrototypeBindInternal()
245 static_cast<double>(argsArray->GetLength())); in FunctionPrototypeBindInternal()
Dbuiltins_function.h50 JSHandle<TaggedArray> argsArray);
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_function_stub_builder.cpp166 GateRef argsArray = NewTaggedArrayFromArgs(glue, Int32(1), *argsLength, numArgs); in PrototypeBind() local
169 GateRef boundFunction = newBuilder.NewJSBoundFunction(glue, target, thisArg, argsArray); in PrototypeBind()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h318 JSHandle<TaggedArray> argsArray = factory->NewTaggedArray(length); in RuntimeNewObjApply() local
322 argsArray->Set(thread, i, prop); in RuntimeNewObjApply()
328 info->SetCallArg(length, argsArray); in RuntimeNewObjApply()
Druntime_stubs.cpp4006 JSHandle<TaggedArray> argsArray = thread->GetEcmaVM()->GetFactory()->EmptyArray(); in DEF_RUNTIME_STUBS() local
4008 … thisArg, argsArray); in DEF_RUNTIME_STUBS()