Lines Matching defs:thisLength
1601 auto thisLength = EcmaStringAccessor(thisString).GetLength();
1603 if (limitTag->IsUndefined() && thisLength != 0 && seperatorLength != 0) {
1605 thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength);
1620 return CreateArrayBySplitString(thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength, lim);
1654 auto thisLength = EcmaStringAccessor(thisString).GetLength();
1673 return CreateArrayBySplitString(thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength, lim);
1677 const JSHandle<EcmaString> &thisString, uint32_t thisLength, uint32_t lim)
1696 uint32_t actualLength = std::min(thisLength, lim);
1719 uint32_t thisLength, uint32_t seperatorLength, uint32_t lim)
1721 if (thisLength != 0) {
1724 thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength, lim);
1726 return CreateArrayFromString(thread, ecmaVm, thisString, thisLength, lim);
1744 uint32_t thisLength, uint32_t seperatorLength, uint32_t lim)
1773 [thread, ecmaVm, &thisString, &seperatorString, &posArray, thisLength, seperatorLength, lim, posArrLength]
1787 EcmaStringAccessor::GetSubString(ecmaVm, thisString, index, thisLength - index);