Lines Matching refs:insertCount
2287 int64_t insertCount = 0; in Splice() local
2319 insertCount = argc - 2; // 2:2 means there are two arguments before the insert items. in Splice()
2328 if (len + insertCount - actualDeleteCount > base::MAX_SAFE_INTEGER) { in Splice()
2337 return JSStableArray::Splice(JSHandle<JSArray>::Cast(thisHandle), argv, start, insertCount, in Splice()
2392 if (insertCount < actualDeleteCount) { in Splice()
2396 toKey.Update(JSTaggedValue(k + insertCount)); in Splice()
2412 while (k > len - actualDeleteCount + insertCount) { in Splice()
2418 } else if (insertCount > actualDeleteCount) { in Splice()
2438 toKey.Update(JSTaggedValue(k + insertCount - 1)); in Splice()
2465 int64_t newLen = len - actualDeleteCount + insertCount; in Splice()
3137 int64_t insertCount = 0; in ToSpliced() local
3164 insertCount = argc - 2; // 2:2 means there two arguments before the insert items. in ToSpliced()
3173 newLen = len + insertCount - actualSkipCount; in ToSpliced()