Lines Matching refs:replace_with
198 std::basic_string_view<typename StringType::value_type> replace_with,
203 const std::u16string& replace_with,
205 return ReplaceCharsT(input, replace_chars, std::u16string_view(replace_with),
211 const std::string& replace_with,
213 return ReplaceCharsT(input, replace_chars, std::string_view(replace_with),
651 std::basic_string_view<typename StringType::value_type> replace_with,
666 const size_t replace_length = replace_with.length();
668 str->replace(first_match, find_length, replace_with.data(), replace_length);
678 CharTraits::copy(buffer + offset, replace_with.data(), replace_length);
723 str->append(replace_with.data(), replace_length);
768 CharTraits::copy(buffer + write_offset, replace_with.data(),
794 std::basic_string_view<typename StringType::value_type> replace_with,
801 output, 0, CharacterMatcher<StringType>{find_any_of_these}, replace_with,
808 std::u16string_view replace_with) {
811 replace_with, ReplaceType::REPLACE_FIRST);
817 std::string_view replace_with) {
820 replace_with, ReplaceType::REPLACE_FIRST);
826 std::u16string_view replace_with) {
829 replace_with, ReplaceType::REPLACE_ALL);
835 std::string_view replace_with) {
838 replace_with, ReplaceType::REPLACE_ALL);