Lines Matching refs:replacement
3451 // Return whether the replacement is simple.
3452 bool Compile(Handle<String> replacement,
3462 // Number of distinct parts of the replacement pattern.
3503 // the replacement pattern, otherwise it's a value from PartType.
3510 // the negation of an index into the replacement string.
3518 // of the replacement string.
3519 // tag <= 0: Temporary representation of the substring of the replacement
3625 // Replacement is simple. Do not use Apply to do the replacement.
3640 bool CompiledReplacement::Compile(Handle<String> replacement,
3645 String::FlatContent content = replacement->GetFlatContent();
3665 Isolate* isolate = replacement->GetIsolate();
3666 // Find substrings of replacement string and create them as String objects.
3670 if (tag <= 0) { // A replacement string slice.
3674 isolate->factory()->NewSubString(replacement, from, to), zone());
3679 replacement_substrings_.Add(replacement, zone());
3873 Handle<String> replacement,
3876 ASSERT(replacement->IsFlat());
3885 int replacement_len = replacement->length();
3926 String::WriteToFlat(*replacement,
3955 Handle<String> replacement,
3958 ASSERT(replacement->IsFlat());
3966 bool simple_replace = compiled_replacement.Compile(replacement,
3973 replacement->HasOnlyOneByteChars()) {
3975 isolate, subject, regexp, replacement, last_match_info);
3978 isolate, subject, regexp, replacement, last_match_info);
3999 // Number of parts added by compiled replacement plus preceeding
4017 builder.AddString(replacement);
4146 CONVERT_ARG_HANDLE_CHECKED(String, replacement, 2);
4154 if (replacement->length() == 0) {
4164 if (!replacement->IsFlat()) replacement = FlattenGetString(replacement);
4167 isolate, subject, regexp, replacement, last_match_info);