Lines Matching full:replace_with
237 const STR& replace_with,
240 size_t replace_length = replace_with.length();
247 output->replace(found, 1, replace_with);
256 const string16& replace_with,
258 return ReplaceCharsT(input, replace_chars.as_string(), replace_with, output);
263 const std::string& replace_with,
265 return ReplaceCharsT(input, replace_chars.as_string(), replace_with, output);
705 BasicStringPiece<StringType> replace_with,
718 str->replace(offset, find_length, replace_with.data(), replace_with.size());
724 size_t replace_length = replace_with.length();
728 replace_with.data(), replace_with.size());
748 replace_with.data(), replace_with.size());
801 replace_with.data(), replace_with.size());
811 StringPiece16 replace_with) {
813 str, start_offset, find_this, replace_with, false); // Replace first.
819 StringPiece replace_with) {
821 str, start_offset, find_this, replace_with, false); // Replace first.
827 StringPiece16 replace_with) {
829 str, start_offset, find_this, replace_with, true); // Replace all.
835 StringPiece replace_with) {
837 str, start_offset, find_this, replace_with, true); // Replace all.