Home
last modified time | relevance | path

Searched refs:rowp (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dmouse.pro18 int mouse_comp_pos(win_T *win, int *rowp, int *colp, linenr_T *lnump, int *plines_cache);
19 win_T *mouse_find_win(int *rowp, int *colp, mouse_find_T popup);
H A Dmove.pro32 void textpos2screenpos(win_T *wp, pos_T *pos, int *rowp, int *scolp, int *ccolp, int *ecolp);
/vim-8.2.3635/src/
H A Dmouse.c2859 int *rowp, in mouse_comp_pos() argument
2865 int row = *rowp; in mouse_comp_pos()
2950 *rowp = row; in mouse_comp_pos()
2964 mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED) in mouse_find_win() argument
2977 if (*rowp >= wp->w_winrow && *rowp < wp->w_winrow + popup_height(wp) in mouse_find_win()
2986 *rowp -= pwp->w_winrow; in mouse_find_win()
2994 *rowp -= firstwin->w_winrow; in mouse_find_win()
3012 if (*rowp < fp->fr_height) in mouse_find_win()
3014 *rowp -= fp->fr_height; in mouse_find_win()
3024 *rowp -= wp->w_winbar_height; in mouse_find_win()
H A Dmove.c1227 int *rowp, // screen row in textpos2screenpos() argument
1270 *rowp = W_WINROW(wp) + row + rowoff; in textpos2screenpos()