Lines Matching full:matched
1083 …// unit of the matched substring and let matched be searchString. If no occurrences of searchStrin… in Replace()
1093 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»). in Replace()
1094 const uint32_t argsLength = 3; // 3: «matched, pos, and string» in Replace()
1107 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue) in Replace()
1112 // Let tailPos be pos + the number of code units in matched. in Replace()
1218 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»). in ReplaceAll()
1219 const uint32_t argsLength = 3; // 3: «matched, pos, and string» in ReplaceAll()
1232 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue) in ReplaceAll()
1238 // Let tailPos be pos + the number of code units in matched. in ReplaceAll()
1268 void ProcessDollarAmpersand(std::u16string &stringBuilder, const JSHandle<EcmaString> &matched, boo… in ProcessDollarAmpersand() argument
1270 stringBuilder += EcmaStringAccessor(matched).ToU16String(); in ProcessDollarAmpersand()
1271 if (EcmaStringAccessor(matched).IsUtf16()) { in ProcessDollarAmpersand()
1374 JSTaggedValue BuiltinsString::GetSubstitution(JSThread *thread, const JSHandle<EcmaString> &matched, in GetSubstitution() argument
1386 int32_t tailPos = position + static_cast<int32_t>(EcmaStringAccessor(matched).GetLength()); in GetSubstitution()
1419 ProcessDollarAmpersand(stringBuilder, matched, canBeCompress); in GetSubstitution()