current_pos       460 lib/search/regex.c mc_search_regex__replace_handle_esc_seq (const GString * replace_str, const gsize current_pos,
current_pos       463 lib/search/regex.c     char *curr_str = &(replace_str->str[current_pos]);
current_pos       466 lib/search/regex.c     if (replace_str->len > current_pos + 2)
current_pos       471 lib/search/regex.c                  current_pos + *skip_len < replace_str->len && curr_str[*skip_len] >= '0'
current_pos       475 lib/search/regex.c             if (current_pos + *skip_len < replace_str->len && curr_str[*skip_len] == '}')
current_pos       495 lib/search/regex.c                      current_pos + *skip_len < replace_str->len
current_pos       499 lib/search/regex.c                 if (current_pos + *skip_len < replace_str->len && curr_str[*skip_len] == '}')
current_pos       542 lib/search/regex.c mc_search_regex__process_replace_str (const GString * replace_str, const gsize current_pos,
current_pos       546 lib/search/regex.c     const char *curr_str = &(replace_str->str[current_pos]);
current_pos       548 lib/search/regex.c     if (current_pos > replace_str->len)
current_pos       553 lib/search/regex.c     if (replace_str->len > current_pos + 2 && curr_str[0] == '$' && curr_str[1] == '{'
current_pos       565 lib/search/regex.c              current_pos + *skip_len + 2 < replace_str->len
current_pos       583 lib/search/regex.c     if (curr_str[0] == '\\' && replace_str->len > current_pos + 1)
current_pos       598 lib/search/regex.c         if (!mc_search_regex__replace_handle_esc_seq (replace_str, current_pos, skip_len, &ret))
current_pos       915 lib/search/regex.c     gsize current_pos, virtual_pos;
current_pos       924 lib/search/regex.c     virtual_pos = current_pos = start_search;
current_pos       928 lib/search/regex.c         lc_mc_search->start_buffer = current_pos;
current_pos       936 lib/search/regex.c                 ret = lc_mc_search->search_fn (user_data, current_pos, &current_chr);
current_pos       944 lib/search/regex.c                 current_pos++;
current_pos       965 lib/search/regex.c                 const char current_chr = ((const char *) user_data)[current_pos];
current_pos       970 lib/search/regex.c                 current_pos++;
current_pos       972 lib/search/regex.c                 if (current_chr == '\n' || current_pos > end_search)
current_pos       978 lib/search/regex.c                                  current_pos - virtual_pos);
current_pos       979 lib/search/regex.c             virtual_pos = current_pos;
current_pos      1004 lib/search/regex.c             ((lc_mc_search->update_fn) (user_data, current_pos) == MC_SEARCH_CB_ABORT))
current_pos       330 src/editor/editsearch.c edit_calculate_start_of_next_line (const edit_buffer_t * buf, off_t current_pos, off_t max_pos,
current_pos       335 src/editor/editsearch.c     for (i = current_pos; i < max_pos; i++)
current_pos       337 src/editor/editsearch.c         current_pos++;
current_pos       342 src/editor/editsearch.c     return current_pos;
current_pos       356 src/editor/editsearch.c edit_calculate_end_of_previous_line (const edit_buffer_t * buf, off_t current_pos,
current_pos       361 src/editor/editsearch.c     for (i = current_pos - 1; i >= 0; i--)
current_pos       379 src/editor/editsearch.c edit_calculate_start_of_previous_line (const edit_buffer_t * buf, off_t current_pos,
current_pos       382 src/editor/editsearch.c     current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol);
current_pos       383 src/editor/editsearch.c     current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol);
current_pos       385 src/editor/editsearch.c     return (current_pos + 1);
current_pos       399 src/editor/editsearch.c edit_calculate_start_of_current_line (const edit_buffer_t * buf, off_t current_pos,
current_pos       402 src/editor/editsearch.c     current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol);
current_pos       404 src/editor/editsearch.c     return (current_pos + 1);