Searched refs:argArray (Results 1 – 7 of 7) sorted by relevance
| /arkcompiler/ets_frontend/ts2panda/src/expression/ |
| D | callExpression.ts | 143 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/ |
| D | core_vm.cpp | 275 …coretypes::Array *argArray = CreateArgumentsArray(args, ctx, runtime_->GetClassLinker(), thread->G… in InvokeEntrypointImpl() local 276 objectHeader = argArray; in InvokeEntrypointImpl()
|
| /arkcompiler/ets_frontend/ts2panda/src/statement/ |
| D | classStatement.ts | 374 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/ |
| D | builtins_typedarray.cpp | 1129 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/ |
| D | typed_array_helper.cpp | 93 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/ |
| D | lib_ark_builtins.d.ts | 150 apply(this: Function, thisArg: any, argArray?: any): any;
|
| /arkcompiler/ets_runtime/ecmascript/stubs/ |
| D | runtime_stubs.cpp | 2149 …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()
|