Home
last modified time | relevance | path

Searched refs:argArray (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/expression/
DcallExpression.ts143 let argArray = pandaGen.getTemp();
144 createArrayFromElements(expr, compiler, <ts.NodeArray<ts.Expression>>expr.arguments, argArray);
145 pandaGen.callSpread(debugNode, calleeReg, thisReg, argArray);
146 pandaGen.freeTemps(argArray);
/arkcompiler/runtime_core/static_core/runtime/core/
Dcore_vm.cpp275 …coretypes::Array *argArray = CreateArgumentsArray(args, ctx, runtime_->GetClassLinker(), thread->G… in InvokeEntrypointImpl() local
276 objectHeader = argArray; in InvokeEntrypointImpl()
/arkcompiler/ets_frontend/ts2panda/src/statement/
DclassStatement.ts374 let argArray = pandaGen.getTemp();
375 … createArrayFromElements(node, compiler, <ts.NodeArray<ts.Expression>>node.arguments, argArray);
377 pandaGen.superCallSpread(node, argArray);
378 pandaGen.freeTemps(argArray);
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_typedarray.cpp1129 JSHandle<JSTaggedValue> argArray = GetCallArg(argv, 0); in Set() local
1132 if (!argArray->IsTypedArray()) { in Set()
1133 if (argArray->IsStableJSArray(thread)) { in Set()
1134 uint32_t length = JSHandle<JSArray>::Cast(argArray)->GetArrayLength(); in Set()
1135 JSHandle<JSObject> argObj(argArray); in Set()
1144 JSHandle<JSObject> src = JSTaggedValue::ToObject(thread, argArray); in Set()
1213 JSHandle<JSTypedArray> typedArray(argArray); in Set()
1224 ContentType argArrayContentType = JSHandle<JSTypedArray>::Cast(argArray)->GetContentType(); in Set()
/arkcompiler/ets_runtime/ecmascript/base/
Dtyped_array_helper.cpp93 JSHandle<JSTaggedValue> argArray = BuiltinsBase::GetCallArg(argv, 0); in FastCopyElementFromArray() local
94 uint32_t len = JSHandle<JSArray>::Cast(argArray)->GetArrayLength(); in FastCopyElementFromArray()
95 JSHandle<JSObject> argObj(argArray); in FastCopyElementFromArray()
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dlib_ark_builtins.d.ts150 apply(this: Function, thisArg: any, argArray?: any): any;
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.cpp2149 …JSHandle<JSTaggedValue> argArray = GetHArg<JSTaggedValue>(argv, argc, 0); // 0: means the zeroth … in DEF_RUNTIME_STUBS() local
2152 return RuntimeCreateArrayWithBuffer(thread, factory, argArray).GetRawData(); in DEF_RUNTIME_STUBS()