replace_str       191 lib/search.h   GString *mc_search_prepare_replace_str (mc_search_t *mc_search, GString *replace_str);
replace_str       192 lib/search.h   char *mc_search_prepare_replace_str2 (mc_search_t *lc_mc_search, const char *replace_str);
replace_str       199 lib/search/glob.c mc_search_glob_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str)
replace_str       203 lib/search/glob.c     repl = mc_search__translate_replace_glob_to_regex (replace_str->str);
replace_str       226 lib/search/hex.c mc_search_hex_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str)
replace_str       230 lib/search/hex.c     return mc_g_string_dup (replace_str);
replace_str        58 lib/search/internal.h GString *mc_search_regex_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str);
replace_str        66 lib/search/internal.h GString *mc_search_normal_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str);
replace_str        74 lib/search/internal.h GString *mc_search_glob_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str);
replace_str        82 lib/search/internal.h GString *mc_search_hex_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str);
replace_str       104 lib/search/normal.c mc_search_normal_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str)
replace_str       108 lib/search/normal.c     return mc_g_string_dup (replace_str);
replace_str       462 lib/search/regex.c mc_search_regex__replace_handle_esc_seq (const GString *replace_str, const gsize current_pos,
replace_str       465 lib/search/regex.c     char *curr_str = &(replace_str->str[current_pos]);
replace_str       468 lib/search/regex.c     if (replace_str->len > current_pos + 2)
replace_str       473 lib/search/regex.c                  current_pos + *skip_len < replace_str->len && curr_str[*skip_len] >= '0'
replace_str       478 lib/search/regex.c             if (current_pos + *skip_len < replace_str->len && curr_str[*skip_len] == '}')
replace_str       498 lib/search/regex.c                      current_pos + *skip_len < replace_str->len
replace_str       503 lib/search/regex.c                 if (current_pos + *skip_len < replace_str->len && curr_str[*skip_len] == '}')
replace_str       546 lib/search/regex.c mc_search_regex__process_replace_str (const GString *replace_str, const gsize current_pos,
replace_str       550 lib/search/regex.c     const char *curr_str = &(replace_str->str[current_pos]);
replace_str       552 lib/search/regex.c     if (current_pos > replace_str->len)
replace_str       557 lib/search/regex.c     if (replace_str->len > current_pos + 2 && curr_str[0] == '$' && curr_str[1] == '{'
replace_str       562 lib/search/regex.c         if (str_is_char_escaped (replace_str->str, curr_str))
replace_str       568 lib/search/regex.c         for (*skip_len = 0; current_pos + *skip_len + 2 < replace_str->len
replace_str       587 lib/search/regex.c     if (curr_str[0] == '\\' && replace_str->len > current_pos + 1)
replace_str       589 lib/search/regex.c         if (str_is_char_escaped (replace_str->str, curr_str))
replace_str       602 lib/search/regex.c         if (!mc_search_regex__replace_handle_esc_seq (replace_str, current_pos, skip_len, &ret))
replace_str      1026 lib/search/regex.c mc_search_regex_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str)
replace_str      1036 lib/search/regex.c         mc_search_regex__get_max_num_of_replace_tokens (replace_str->str, replace_str->len);
replace_str      1039 lib/search/regex.c         return mc_g_string_dup (replace_str);
replace_str      1051 lib/search/regex.c     for (loop = 0; loop < replace_str->len - 1; loop++)
replace_str      1057 lib/search/regex.c         lc_index = mc_search_regex__process_replace_str (replace_str, loop, &len, &replace_flags);
replace_str      1063 lib/search/regex.c                 mc_search_regex__process_append_str (ret, replace_str->str + prev, loop - prev,
replace_str      1065 lib/search/regex.c                 mc_search_regex__process_append_str (ret, replace_str->str + loop + 1, len - 1,
replace_str      1077 lib/search/regex.c                 mc_search_regex__process_append_str (ret, replace_str->str + prev, loop - prev,
replace_str      1087 lib/search/regex.c             mc_search_regex__process_append_str (ret, replace_str->str + prev, loop - prev,
replace_str      1090 lib/search/regex.c             mc_search_regex__process_escape_sequence (ret, replace_str->str + loop + 1, len - 1,
replace_str      1109 lib/search/regex.c             mc_search_regex__process_append_str (ret, replace_str->str + prev, loop - prev,
replace_str      1119 lib/search/regex.c     mc_search_regex__process_append_str (ret, replace_str->str + prev, replace_str->len - prev,
replace_str       351 lib/search/search.c mc_search_prepare_replace_str (mc_search_t *lc_mc_search, GString *replace_str)
replace_str       355 lib/search/search.c     if (replace_str == NULL || replace_str->len == 0)
replace_str       359 lib/search/search.c         return mc_g_string_dup (replace_str);
replace_str       364 lib/search/search.c         ret = mc_search_regex_prepare_replace_str (lc_mc_search, replace_str);
replace_str       367 lib/search/search.c         ret = mc_search_glob_prepare_replace_str (lc_mc_search, replace_str);
replace_str       370 lib/search/search.c         ret = mc_search_normal_prepare_replace_str (lc_mc_search, replace_str);
replace_str       373 lib/search/search.c         ret = mc_search_hex_prepare_replace_str (lc_mc_search, replace_str);
replace_str       376 lib/search/search.c         ret = mc_g_string_dup (replace_str);
replace_str       385 lib/search/search.c mc_search_prepare_replace_str2 (mc_search_t *lc_mc_search, const char *replace_str)
replace_str       390 lib/search/search.c     replace_str2 = g_string_new (replace_str);
replace_str        39 tests/lib/search/glob_prepare_replace_str.c     const char *replace_str;
replace_str        78 tests/lib/search/glob_prepare_replace_str.c     dest_str = mc_search_prepare_replace_str2 (s, data->replace_str);
replace_str        45 tests/lib/search/regex_replace_esc_seq.c             mc_search_regex__replace_handle_esc_seq (replace_str, pos, &skip_len, &ret), r,        \
replace_str       195 tests/lib/search/regex_replace_esc_seq.c     GString *replace_str;
replace_str       200 tests/lib/search/regex_replace_esc_seq.c     replace_str = g_string_new (data->input_string);
replace_str       203 tests/lib/search/regex_replace_esc_seq.c     actual_result = mc_search_regex__replace_handle_esc_seq (replace_str, data->input_pos,
replace_str       211 tests/lib/search/regex_replace_esc_seq.c     g_string_free (replace_str, TRUE);