current_pos 455 lib/search/regex.c mc_search_regex__replace_handle_esc_seq (const GString * replace_str, const gsize current_pos, current_pos 458 lib/search/regex.c char *curr_str = &(replace_str->str[current_pos]); current_pos 461 lib/search/regex.c if (replace_str->len > current_pos + 2) current_pos 466 lib/search/regex.c current_pos + *skip_len < replace_str->len && curr_str[*skip_len] >= '0' current_pos 470 lib/search/regex.c if (current_pos + *skip_len < replace_str->len && curr_str[*skip_len] == '}') current_pos 490 lib/search/regex.c current_pos + *skip_len < replace_str->len current_pos 494 lib/search/regex.c if (current_pos + *skip_len < replace_str->len && curr_str[*skip_len] == '}') current_pos 537 lib/search/regex.c mc_search_regex__process_replace_str (const GString * replace_str, const gsize current_pos, current_pos 541 lib/search/regex.c const char *curr_str = &(replace_str->str[current_pos]); current_pos 543 lib/search/regex.c if (current_pos > replace_str->len) current_pos 548 lib/search/regex.c if (replace_str->len > current_pos + 2 && curr_str[0] == '$' && curr_str[1] == '{' current_pos 560 lib/search/regex.c current_pos + *skip_len + 2 < replace_str->len current_pos 578 lib/search/regex.c if (curr_str[0] == '\\' && replace_str->len > current_pos + 1) current_pos 593 lib/search/regex.c if (!mc_search_regex__replace_handle_esc_seq (replace_str, current_pos, skip_len, &ret)) current_pos 886 lib/search/regex.c gsize current_pos, virtual_pos; current_pos 895 lib/search/regex.c virtual_pos = current_pos = start_search; current_pos 899 lib/search/regex.c lc_mc_search->start_buffer = current_pos; current_pos 907 lib/search/regex.c ret = lc_mc_search->search_fn (user_data, current_pos, ¤t_chr); current_pos 915 lib/search/regex.c current_pos++; current_pos 936 lib/search/regex.c const char current_chr = ((const char *) user_data)[current_pos]; current_pos 941 lib/search/regex.c current_pos++; current_pos 943 lib/search/regex.c if (current_chr == '\n' || current_pos > end_search) current_pos 949 lib/search/regex.c current_pos - virtual_pos); current_pos 950 lib/search/regex.c virtual_pos = current_pos; current_pos 975 lib/search/regex.c ((lc_mc_search->update_fn) (user_data, current_pos) == MC_SEARCH_CB_ABORT)) current_pos 325 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 330 src/editor/editsearch.c for (i = current_pos; i < max_pos; i++) current_pos 332 src/editor/editsearch.c current_pos++; current_pos 337 src/editor/editsearch.c return current_pos; current_pos 351 src/editor/editsearch.c edit_calculate_end_of_previous_line (const edit_buffer_t * buf, off_t current_pos, current_pos 356 src/editor/editsearch.c for (i = current_pos - 1; i >= 0; i--) current_pos 374 src/editor/editsearch.c edit_calculate_start_of_previous_line (const edit_buffer_t * buf, off_t current_pos, current_pos 377 src/editor/editsearch.c current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol); current_pos 378 src/editor/editsearch.c current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol); current_pos 380 src/editor/editsearch.c return (current_pos + 1); current_pos 394 src/editor/editsearch.c edit_calculate_start_of_current_line (const edit_buffer_t * buf, off_t current_pos, current_pos 397 src/editor/editsearch.c current_pos = edit_calculate_end_of_previous_line (buf, current_pos, end_string_symbol); current_pos 399 src/editor/editsearch.c return (current_pos + 1);