Lines Matching defs:replacement
1285 Handle<String> replacement,
1291 const int replacement_length = replacement->length();
1294 replacement = String::Flatten(isolate, replacement);
1299 String::IndexOf(isolate, replacement, dollar_string, start_index);
1301 return replacement;
1307 builder.AppendString(factory->NewSubString(replacement, 0, next_dollar_ix));
1318 const uint16_t peek = replacement->Get(peek_ix);
1351 const uint16_t next_peek = replacement->Get(peek_ix + 1);
1388 String::IndexOf(isolate, replacement, bracket_string, peek_ix + 1);
1398 factory->NewSubString(replacement, peek_ix + 1, closing_bracket_ix);
1418 // Go the the next $ in the replacement.
1422 String::IndexOf(isolate, replacement, dollar_string, continue_from_ix);
1424 // Return if there are no more $ characters in the replacement. If we
1429 replacement, continue_from_ix, replacement_length));
1437 factory->NewSubString(replacement, continue_from_ix, next_dollar_ix));