Lines Matching refs:off

760     int		off;  in highlight_set_termgui_attr()  local
765 off = 0; in highlight_set_termgui_attr()
766 while (arg[off] != NUL) in highlight_set_termgui_attr()
771 if (STRNICMP(arg + off, hl_name_table[i], len) == 0) in highlight_set_termgui_attr()
774 off += len; in highlight_set_termgui_attr()
783 if (arg[off] == ',') // another one follows in highlight_set_termgui_attr()
784 ++off; in highlight_set_termgui_attr()
1009 int off; in highlight_set_cterm_color() local
1061 off = TOUPPER_ASC(*arg); in highlight_set_cterm_color()
1063 if (off == color_names[i][0] in highlight_set_cterm_color()
1289 int off; in highlight_set_startstop_termcode() local
1302 off = 0; in highlight_set_startstop_termcode()
1304 while (arg[off] != NUL) in highlight_set_startstop_termcode()
1307 for (len = 0; arg[off + len] && in highlight_set_startstop_termcode()
1308 arg[off + len] != ','; ++len) in highlight_set_startstop_termcode()
1310 tname = vim_strnsave(arg + off, len); in highlight_set_startstop_termcode()
1328 off += len; in highlight_set_startstop_termcode()
1329 if (arg[off] == ',') // another one follows in highlight_set_startstop_termcode()
1330 ++off; in highlight_set_startstop_termcode()
1336 for (p = arg, off = 0; off < 100 - 6 && *p; ) in highlight_set_startstop_termcode()
1338 len = trans_special(&p, buf + off, FSK_SIMPLIFY, NULL); in highlight_set_startstop_termcode()
1340 off += len; in highlight_set_startstop_termcode()
1342 buf[off++] = *p++; in highlight_set_startstop_termcode()
1344 buf[off] = NUL; in highlight_set_startstop_termcode()