• Home
  • Raw
  • Download

Lines Matching full:matched

1101 …// unit of the matched substring and let matched be searchString. If no occurrences of searchStrin…  in Replace()
1111 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»). in Replace()
1112 const uint32_t argsLength = 3; // 3: «matched, pos, and string» in Replace()
1125 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue) in Replace()
1130 // Let tailPos be pos + the number of code units in matched. in Replace()
1236 // Let replValue be Call(replaceValue, undefined,«matched, pos, and string»). in ReplaceAll()
1237 const uint32_t argsLength = 3; // 3: «matched, pos, and string» in ReplaceAll()
1250 // Let replStr be GetSubstitution(matched, string, pos, captures, replaceValue) in ReplaceAll()
1256 // Let tailPos be pos + the number of code units in matched. in ReplaceAll()
1286 …DollarAmpersand(EcmaVM *ecmaVm, std::u16string &stringBuilder, const JSHandle<EcmaString> &matched, in ProcessDollarAmpersand() argument
1289 stringBuilder += EcmaStringAccessor(matched).ToU16String(ecmaVm->GetJSThread()); in ProcessDollarAmpersand()
1290 if (EcmaStringAccessor(matched).IsUtf16()) { in ProcessDollarAmpersand()
1393 JSTaggedValue BuiltinsString::GetSubstitution(JSThread *thread, const JSHandle<EcmaString> &matched, in GetSubstitution() argument
1405 int32_t tailPos = position + static_cast<int32_t>(EcmaStringAccessor(matched).GetLength()); in GetSubstitution()
1438 ProcessDollarAmpersand(ecmaVm, stringBuilder, matched, canBeCompress); in GetSubstitution()