Lines Matching refs:callbackFnHandle
530 JSHandle<JSTaggedValue> &callbackFnHandle,
551 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisArgHandle, undefined, argsLength);
587 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
588 if (!callbackFnHandle->IsCallable()) {
610 callResult = JSStableArray::HandleEveryOfStable(thread, thisObjHandle, callbackFnHandle, thisArgHandle, k);
616 return CheckElementForEvery(thread, thisObjVal, callbackFnHandle, thisArgHandle, k);
644 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
645 if (!callbackFnHandle->IsCallable()) {
669 callResult = JSStableArray::HandleSomeOfStable(thread, thisObjHandle, callbackFnHandle, thisArgHandle, k);
686 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisArgHandle, undefined, argsLength);
821 JSHandle<JSTaggedValue> &callbackFnHandle)
836 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisArgHandle, undefined, argsLength);
879 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
880 if (!callbackFnHandle->IsCallable()) {
919 FilterUnStableJSArray(thread, thisArgHandle, thisObjVal, k, len, toIndex, newArrayHandle, callbackFnHandle);
950 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
951 if (!callbackFnHandle->IsCallable()) {
976 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisArgHandle, undefined, argsLength);
1017 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
1018 if (!callbackFnHandle->IsCallable()) {
1037 callResult = JSStableArray::HandleFindIndexOfStable(thread, thisObjHandle, callbackFnHandle, thisArgHandle, k);
1051 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisArgHandle, undefined, argsLength);
1092 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
1093 if (!callbackFnHandle->IsCallable()) {
1114 JSStableArray::HandleforEachOfStable(thread, thisObjHandle, callbackFnHandle, thisArgHandle, len, k);
1127 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisArgHandle, undefined, argsLength);
1271 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
1272 if (!callbackFnHandle->IsCallable()) {
1320 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisArgHandle, undefined, argsLength);
1484 JSHandle<JSTaggedValue> &callbackFnHandle)
1500 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisArgHandle, undefined, argsLength);
1540 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
1541 if (!callbackFnHandle->IsCallable()) {
1586 JSStableArray::Reduce(thread, thisObjHandle, callbackFnHandle, accumulator, k, len);
1589 auto opResult = ReduceUnStableJSArray(thread, thisHandle, thisObjVal, k, len, accumulator, callbackFnHandle);
1824 JSHandle<JSTaggedValue> callbackFnHandle = GetCallArg(argv, 0);
1825 if (!callbackFnHandle->IsUndefined() && !callbackFnHandle->IsCallable()) {
1840 if (thisHandle->IsStableJSArray(thread) && callbackFnHandle->IsUndefined()) {
1841 JSStableArray::Sort(thread, thisObjHandle, callbackFnHandle);
1843 JSSharedArray::Sort(thread, JSHandle<JSTaggedValue>::Cast(thisObjHandle), callbackFnHandle);
2088 JSHandle<JSTaggedValue> callbackFnHandle = JSTaggedValue::GetProperty(thread, thisObjVal, joinKey).GetValue();
2094 if (!callbackFnHandle->IsCallable()) {
2098 callbackFnHandle = JSTaggedValue::GetProperty(thread, objectPrototype, toStringKey).GetValue();
2104 EcmaInterpreter::NewRuntimeCallInfo(thread, callbackFnHandle, thisObjVal, undefined, argsLength);