Lines Matching refs:end_pos
611 pos_T *end_pos, // set to end of the match, unless NULL in searchit() argument
1021 if (end_pos != NULL) in searchit()
1023 end_pos->lnum = lnum + matchpos.lnum; in searchit()
1024 end_pos->col = matchpos.col; in searchit()
1031 if (end_pos != NULL) in searchit()
1033 end_pos->lnum = lnum + endpos.lnum; in searchit()
1034 end_pos->col = endpos.col; in searchit()
1038 if (end_pos != NULL) in searchit()
1039 end_pos->coladd = 0; in searchit()
2956 pos_T end_pos; // end position of the pattern match in current_search() local
3011 end_pos = pos; in current_search()
3017 result = searchit(curwin, curbuf, &pos, &end_pos, in current_search()
3059 curwin->w_cursor = end_pos; in current_search()
3060 if (LT_POS(VIsual, end_pos) && forward) in current_search()