Lines Matching refs:insertCount
2286 int64_t insertCount = 0; in Splice() local
2318 insertCount = argc - 2; // 2:2 means there are two arguments before the insert items. in Splice()
2327 if (len + insertCount - actualDeleteCount > base::MAX_SAFE_INTEGER) { in Splice()
2332 …return JSStableArray::Splice(JSHandle<JSArray>::Cast(thisHandle), argv, start, insertCount, actual… in Splice()
2391 if (insertCount < actualDeleteCount) { in Splice()
2395 toKey.Update(JSTaggedValue(k + insertCount)); in Splice()
2411 while (k > len - actualDeleteCount + insertCount) { in Splice()
2417 } else if (insertCount > actualDeleteCount) { in Splice()
2437 toKey.Update(JSTaggedValue(k + insertCount - 1)); in Splice()
2464 int64_t newLen = len - actualDeleteCount + insertCount; in Splice()
3106 int64_t insertCount = 0; in ToSpliced() local
3133 insertCount = argc - 2; // 2:2 means there two arguments before the insert items. in ToSpliced()
3142 newLen = len + insertCount - actualSkipCount; in ToSpliced()