Lines Matching refs:type

86     int		type = type_arg;  in update_screen()  local
102 if (type == VALID_NO_UPDATE) in update_screen()
105 type = 0; in update_screen()
126 if (type < must_redraw) // use maximal type in update_screen()
127 type = must_redraw; in update_screen()
137 if (curwin->w_lines_valid == 0 && type < NOT_VALID in update_screen()
142 type = NOT_VALID; in update_screen()
148 redraw_later(type); // remember type for next time in update_screen()
149 must_redraw = type; in update_screen()
150 if (type > INVERTED_ALL) in update_screen()
159 may_update_popup_mask(type); in update_screen()
174 type = CLEAR; in update_screen()
175 else if (type != CLEAR) in update_screen()
180 type = CLEAR; in update_screen()
217 if (type == CLEAR) // first clear screen in update_screen()
220 type = NOT_VALID; in update_screen()
238 if (type == INVERTED) in update_screen()
240 if (curwin->w_redr_type < type in update_screen()
241 && !((type == VALID in update_screen()
248 || (type == INVERTED in update_screen()
255 curwin->w_redr_type = type; in update_screen()
258 if (redraw_tabline || type >= NOT_VALID) in update_screen()
836 update_curbuf(int type) in update_curbuf() argument
838 redraw_curbuf_later(type); in update_curbuf()
839 update_screen(type); in update_curbuf()
1425 int type; in win_update() local
1495 type = wp->w_redr_type; in win_update()
1497 if (type == NOT_VALID) in win_update()
1549 type = NOT_VALID; in win_update()
1560 type = NOT_VALID; in win_update()
1685 if (type == REDRAW_TOP) in win_update()
1699 type = NOT_VALID; in win_update()
1702 type = VALID; in win_update()
1718 if ((type == VALID || type == SOME_VALID in win_update()
1719 || type == INVERTED || type == INVERTED_ALL) in win_update()
1926 if (type == SOME_VALID) in win_update()
1931 type = NOT_VALID; in win_update()
1936 || (wp->w_old_cursor_lnum != 0 && type != NOT_VALID)) in win_update()
1944 || type == INVERTED_ALL)) in win_update()
2892 redraw_asap(int type) in redraw_asap() argument
2905 redraw_later(type); in redraw_asap()
3082 redraw_later(int type) in redraw_later() argument
3084 redraw_win_later(curwin, type); in redraw_later()
3090 int type) in redraw_win_later() argument
3092 if (!exiting && wp->w_redr_type < type) in redraw_win_later()
3094 wp->w_redr_type = type; in redraw_win_later()
3095 if (type >= NOT_VALID) in redraw_win_later()
3097 if (must_redraw < type) // must_redraw is the maximum of all windows in redraw_win_later()
3098 must_redraw = type; in redraw_win_later()
3117 redraw_all_later(int type) in redraw_all_later() argument
3122 redraw_win_later(wp, type); in redraw_all_later()
3124 if (must_redraw < type) in redraw_all_later()
3125 must_redraw = type; in redraw_all_later()
3132 redraw_curbuf_later(int type) in redraw_curbuf_later() argument
3134 redraw_buf_later(curbuf, type); in redraw_curbuf_later()
3138 redraw_buf_later(buf_T *buf, int type) in redraw_buf_later() argument
3145 redraw_win_later(wp, type); in redraw_buf_later()
3150 redraw_win_later(curwin, type); in redraw_buf_later()
3169 redraw_buf_and_status_later(buf_T *buf, int type) in redraw_buf_and_status_later() argument
3183 redraw_win_later(wp, type); in redraw_buf_and_status_later()