Lines Matching defs:matched
1089 // unit of the matched substring and let matched be searchString. If no occurrences of searchString were found,
1099 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»).
1100 const uint32_t argsLength = 3; // 3: «matched, pos, and string»
1113 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue)
1118 // Let tailPos be pos + the number of code units in matched.
1224 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»).
1225 const uint32_t argsLength = 3; // 3: «matched, pos, and string»
1238 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue)
1244 // Let tailPos be pos + the number of code units in matched.
1271 void ProcessDollarAmpersand(std::u16string &stringBuilder, const JSHandle<EcmaString> &matched, bool &canBeCompress)
1273 stringBuilder += EcmaStringAccessor(matched).ToU16String();
1274 if (EcmaStringAccessor(matched).IsUtf16()) {
1377 JSTaggedValue BuiltinsString::GetSubstitution(JSThread *thread, const JSHandle<EcmaString> &matched,
1389 int32_t tailPos = position + static_cast<int32_t>(EcmaStringAccessor(matched).GetLength());
1422 ProcessDollarAmpersand(stringBuilder, matched, canBeCompress);