Searched refs:start_idx (Results 1 – 6 of 6) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | strings.c | 1066 int start_idx; in f_stridx() local 1084 start_idx = (int)tv_get_number_chk(&argvars[2], &error); in f_stridx() 1085 if (error || start_idx >= (int)STRLEN(haystack)) in f_stridx() 1087 if (start_idx >= 0) in f_stridx() 1088 haystack += start_idx; in f_stridx()
|
| H A D | memline.c | 5747 int start_idx; in ml_find_line_or_offset() local 5800 start_idx = idx = curline - buf->b_ml.ml_locked_low; in ml_find_line_or_offset() 5861 for (i = start_idx; i <= idx; ++i) in ml_find_line_or_offset() 5879 else if (idx == start_idx) in ml_find_line_or_offset() 5888 curline += idx - start_idx + extra; in ml_find_line_or_offset()
|
| H A D | syntax.c | 2800 int start_idx; in find_endpos() local 2852 start_idx = idx; // remember the first END pattern. in find_endpos() 2864 for (idx = start_idx; idx < syn_block->b_syn_patterns.ga_len; ++idx) in find_endpos()
|
| H A D | quickfix.c | 4618 call_qftf_func(qf_list_T *qfl, int qf_winid, long start_idx, long end_idx) in call_qftf_func() argument 4640 dict_add_number(d, "start_idx", start_idx); in call_qftf_func()
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_quickfix.vim | 5115 for idx in range(a:info.start_idx - 1, a:info.end_idx - 1) 5169 for idx in range(a:info.start_idx - 1, a:info.end_idx - 1) 5233 …set quickfixtextfunc={d\ ->\ map(g:Xgetlist({'id'\ :\ d.id,\ 'items'\ :\ 1}).items[d.start_idx-1:d… 5238 …call assert_equal("{d -> map(g:Xgetlist({'id' : d.id, 'items' : 1}).items[d.start_idx-1:d.end_idx-… 5262 \ {d -> map(g:Xgetlist({'id' : d.id, 'items' : 1}).items[d.start_idx-1:d.end_idx-1], 5292 \ 'items' : 1}).items[d.start_idx-1:d.end_idx-1], 5305 \ 'items' : 1}).items[d.start_idx-1:d.end_idx-1],
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | quickfix.txt | 1976 start_idx index of the first entry for which text should be returned 1980 window for each entry from start_idx to end_idx. The function can obtain 2004 for idx in range(a:info.start_idx - 1, a:info.end_idx - 1)
|