Lines Matching refs:argsLength
129 const uint32_t argsLength = argList->GetLength(); in FunctionPrototypeApply() local
130 …CallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, func, thisArg, undefined, argsLength); in FunctionPrototypeApply()
132 info->SetCallArg(argsLength, argList); in FunctionPrototypeApply()
136 const uint32_t argsLength = static_cast<uint32_t>(argumentsList.second); in FunctionPrototypeApply() local
137 …CallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, func, thisArg, undefined, argsLength); in FunctionPrototypeApply()
139 info->SetCallArg(argsLength, argumentsList.first); in FunctionPrototypeApply()
160 uint32_t argsLength = 0; in FunctionPrototypeBind() local
162 argsLength = argv->GetArgsNumber() - 1; in FunctionPrototypeBind()
167 JSHandle<TaggedArray> argsArray = factory->NewTaggedArray(argsLength); in FunctionPrototypeBind()
168 for (uint32_t index = 0; index < argsLength; ++index) { in FunctionPrototypeBind()
200 …max(0.0, JSTaggedValue::ToNumber(thread, targetLen).GetNumber() - static_cast<double>(argsLength)); in FunctionPrototypeBind()
251 uint32_t argsLength = 0; in FunctionPrototypeCall() local
253 argsLength = argv->GetArgsNumber() - 1; in FunctionPrototypeCall()
260 …CallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, func, thisArg, undefined, argsLength); in FunctionPrototypeCall()
262 info->SetCallArg(argsLength, 0, argv, 1); in FunctionPrototypeCall()