Lines Matching refs:posmatch
355 posmatch_T *posmatch, // match positions in next_search_hl_pos() argument
361 for (i = posmatch->cur; i < MAXPOSMATCH; i++) in next_search_hl_pos()
363 llpos_T *pos = &posmatch->pos[i]; in next_search_hl_pos()
375 if (pos->col < posmatch->pos[found].col) in next_search_hl_pos()
379 *pos = posmatch->pos[found]; in next_search_hl_pos()
380 posmatch->pos[found] = tmp; in next_search_hl_pos()
387 posmatch->cur = 0; in next_search_hl_pos()
390 colnr_T start = posmatch->pos[found].col == 0 in next_search_hl_pos()
391 ? 0 : posmatch->pos[found].col - 1; in next_search_hl_pos()
392 colnr_T end = posmatch->pos[found].col == 0 in next_search_hl_pos()
393 ? MAXCOL : start + posmatch->pos[found].len; in next_search_hl_pos()
401 posmatch->cur = found + 1; in next_search_hl_pos()