Lines Matching defs:seperatorString
1600 JSHandle<EcmaString> seperatorString(seperatorTag);
1602 auto seperatorLength = EcmaStringAccessor(seperatorString).GetLength();
1605 thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength);
1620 return CreateArrayBySplitString(thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength, lim);
1655 JSHandle<EcmaString> seperatorString = JSTaggedValue::ToString(thread, seperatorTag);
1663 auto seperatorLength = EcmaStringAccessor(seperatorString).GetLength();
1673 return CreateArrayBySplitString(thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength, lim);
1685 JSHandle<EcmaString> seperatorString = thread->GetEcmaVM()->GetFactory()->GetEmptyString();
1689 seperatorString, isOneByte);
1712 StringSplitResultCache::SetCachedResult(thread, cacheTable, thisString, seperatorString, array);
1718 const JSHandle<EcmaString> &thisString, const JSHandle<EcmaString> &seperatorString,
1724 thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength, lim);
1743 EcmaVM *ecmaVm, const JSHandle<EcmaString> &thisString, const JSHandle<EcmaString> &seperatorString,
1749 seperatorString);
1759 int32_t pos = EcmaStringAccessor::IndexOf(ecmaVm, thisString, seperatorString);
1767 pos = EcmaStringAccessor::IndexOf(ecmaVm, thisString, seperatorString, index);
1773 [thread, ecmaVm, &thisString, &seperatorString, &posArray, thisLength, seperatorLength, lim, posArrLength]
1793 StringSplitResultCache::SetCachedResult(thread, cacheTable, thisString, seperatorString, newElements);