current_pos       457 lib/search/regex.c mc_search_regex__replace_handle_esc_seq (const GString *replace_str, const gsize current_pos,
current_pos       460 lib/search/regex.c     char *curr_str = &(replace_str->str[current_pos]);
current_pos       463 lib/search/regex.c     if (replace_str->len > current_pos + 2)
current_pos       468 lib/search/regex.c                  current_pos + *skip_len < replace_str->len && curr_str[*skip_len] >= '0'
current_pos       472 lib/search/regex.c             if (current_pos + *skip_len < replace_str->len && curr_str[*skip_len] == '}')
current_pos       492 lib/search/regex.c                      current_pos + *skip_len < replace_str->len
current_pos       496 lib/search/regex.c                 if (current_pos + *skip_len < replace_str->len && curr_str[*skip_len] == '}')
current_pos       539 lib/search/regex.c mc_search_regex__process_replace_str (const GString *replace_str, const gsize current_pos,
current_pos       543 lib/search/regex.c     const char *curr_str = &(replace_str->str[current_pos]);
current_pos       545 lib/search/regex.c     if (current_pos > replace_str->len)
current_pos       550 lib/search/regex.c     if (replace_str->len > current_pos + 2 && curr_str[0] == '$' && curr_str[1] == '{'
current_pos       562 lib/search/regex.c              current_pos + *skip_len + 2 < replace_str->len
current_pos       580 lib/search/regex.c     if (curr_str[0] == '\\' && replace_str->len > current_pos + 1)
current_pos       595 lib/search/regex.c         if (!mc_search_regex__replace_handle_esc_seq (replace_str, current_pos, skip_len, &ret))
current_pos       911 lib/search/regex.c     gsize current_pos, virtual_pos;
current_pos       920 lib/search/regex.c     virtual_pos = current_pos = start_search;
current_pos       924 lib/search/regex.c         lc_mc_search->start_buffer = current_pos;
current_pos       932 lib/search/regex.c                 ret = lc_mc_search->search_fn (user_data, current_pos, &current_chr);
current_pos       940 lib/search/regex.c                 current_pos++;
current_pos       961 lib/search/regex.c                 const char current_chr = ((const char *) user_data)[current_pos];
current_pos       966 lib/search/regex.c                 current_pos++;
current_pos       968 lib/search/regex.c                 if (current_chr == '\n' || current_pos > end_search)
current_pos       974 lib/search/regex.c                                  current_pos - virtual_pos);
current_pos       975 lib/search/regex.c             virtual_pos = current_pos;
current_pos      1000 lib/search/regex.c             ((lc_mc_search->update_fn) (user_data, current_pos) == MC_SEARCH_CB_ABORT))
current_pos       331 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       336 src/editor/editsearch.c     for (i = current_pos; i < max_pos; i++)
current_pos       338 src/editor/editsearch.c         current_pos++;
current_pos       343 src/editor/editsearch.c     return current_pos;
current_pos       357 src/editor/editsearch.c edit_calculate_end_of_previous_line (const edit_buffer_t *buf, off_t current_pos,
current_pos       362 src/editor/editsearch.c     for (i = current_pos - 1; i >= 0; i--)
current_pos       380 src/editor/editsearch.c edit_calculate_start_of_previous_line (const edit_buffer_t *buf, off_t current_pos,
current_pos       383 src/editor/editsearch.c     current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol);
current_pos       384 src/editor/editsearch.c     current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol);
current_pos       386 src/editor/editsearch.c     return (current_pos + 1);
current_pos       400 src/editor/editsearch.c edit_calculate_start_of_current_line (const edit_buffer_t *buf, off_t current_pos,
current_pos       403 src/editor/editsearch.c     current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol);
current_pos       405 src/editor/editsearch.c     return (current_pos + 1);