Searched refs:i2 (Results 1 – 17 of 17) sorted by relevance
| /vim-8.2.3635/src/xdiff/ |
| H A D | xdiffi.c | 32 long i1, i2; member 90 for (; i1 < lim1 && i2 < lim2 && ha1[i1] == ha2[i2]; i1++, i2++); in xdl_split() 96 spl->i2 = i2; in xdl_split() 127 for (; i1 > off1 && i2 > off2 && ha1[i1 - 1] == ha2[i2 - 1]; i1--, i2--); in xdl_split() 133 spl->i2 = i2; in xdl_split() 166 spl->i2 = i2; in xdl_split() 190 spl->i2 = i2; in xdl_split() 384 xch->i2 = i2; in xdl_add_change() 957 for (i1 = xe->xdf1.nrec, i2 = xe->xdf2.nrec; i1 >= 0 || i2 >= 0; i1--, i2--) in xdl_build_script() 960 for (l2 = i2; rchg2[i2 - 1]; i2--); in xdl_build_script() [all …]
|
| H A D | xutils.c | 183 i2 = 0; in xdl_recmatch() 201 while (i2 < s2 && XDL_ISSPACE(l2[i2])) in xdl_recmatch() 202 i2++; in xdl_recmatch() 210 while (i2 < s2 && XDL_ISSPACE(l2[i2])) in xdl_recmatch() 211 i2++; in xdl_recmatch() 218 while (i1 < s1 && i2 < s2 && l1[i1] == l2[i2]) { in xdl_recmatch() 220 i2++; in xdl_recmatch() 224 while (i1 < s1 && i2 < s2 && l1[i1] == l2[i2]) { in xdl_recmatch() 226 i2++; in xdl_recmatch() 245 while (i2 < s2 && XDL_ISSPACE(l2[i2])) in xdl_recmatch() [all …]
|
| H A D | xemit.c | 194 s2 = XDL_MAX(xch->i2 - xecfg->ctxlen, 0); in xdl_emit_diff() 202 long i2 = xch->i2; in xdl_emit_diff() 208 while (i2 < xe->xdf2.nrec) { in xdl_emit_diff() 209 if (is_func_rec(&xe->xdf2, xecfg, i2)) in xdl_emit_diff() 211 i2++; in xdl_emit_diff() 237 xchp->i2 + xchp->chg2 <= s2) in xdl_emit_diff() 255 e2 = xche->i2 + xche->chg2 + lctx; in xdl_emit_diff() 307 for (; s2 < xch->i2; s2++) in xdl_emit_diff() 329 for (s2 = xch->i2; s2 < xch->i2 + xch->chg2; s2++) in xdl_emit_diff() 336 s2 = xch->i2 + xch->chg2; in xdl_emit_diff() [all …]
|
| H A D | xdiffi.h | 42 long i1, i2; member
|
| /vim-8.2.3635/src/ |
| H A D | help.c | 813 int i1, i2; in fix_help_buffer() local 822 for (i2 = 0; i2 < fcount; ++i2) in fix_help_buffer() 824 if (i1 == i2) in fix_help_buffer() 826 if (fnames[i1] == NULL || fnames[i2] == NULL) in fix_help_buffer() 829 f2 = fnames[i2]; in fix_help_buffer()
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_const.vim | 171 const i2 = 1 185 call assert_fails('const i2 = 1', 'E995:') 198 call assert_fails('const [i2, f2, s2] = [1, 1.1, "vim"]', 'E995:')
|
| H A D | test_lua.vim | 675 lua i2 = vim.eval"R" 676 lua msg = "funcref|test|" .. (#i2(i1) == #i1(i2) and "OK" or "FAIL") 703 lua i1, i2, msg, d, res = nil
|
| H A D | test_undo.vim | 449 normal i2
|
| H A D | test_python2.vim | 1619 i2 = iter(vim.buffers) 1620 cb.append('i2:' + str(next(i2))) 1624 del i2 1630 \ 'i2:<buffer Xfile>', 'i:<buffer a>', 'i3:<buffer Xfile>'],
|
| H A D | test_python3.vim | 1810 i2 = iter(vim.buffers) 1811 cb.append('i2:' + str(next(i2))) 1815 del i2 1821 \ 'i2:<buffer Xfile>', 'i:<buffer a>', 'i3:<buffer Xfile>'],
|
| H A D | test_vim9_script.vim | 1922 def Compare(i1: number, i2: number): number 1923 return i2 - i1
|
| /vim-8.2.3635/runtime/keymap/ |
| H A D | pinyin.vim | 26 i2 í
|
| H A D | vietnamese-vni_utf-8.vim | 148 i2 ì
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | if_lua.txt | 387 :lua i2 = vim.eval('R') 388 :lua print(#i1, #i2) -- both 'I' 389 :lua print(i1, i2, #i2(i1) == #i1(i2))
|
| H A D | digraph.txt | 885 ỉ i2 1EC9 7881 LATIN SMALL LETTER I WITH HOOK ABOVE
|
| H A D | eval.txt | 10494 func MyCompare(i1, i2) 10495 return a:i1 == a:i2 ? 0 : a:i1 > a:i2 ? 1 : -1 10500 func MyCompare(i1, i2) 10501 return a:i1 - a:i2 10504 eval mylist->sort({i1, i2 -> i1 - i2})
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | phpcomplete.vim | 885 function! phpcomplete#CompareCompletionRow(i1, i2) " {{{ argument 886 return a:i1.word == a:i2.word ? 0 : a:i1.word > a:i2.word ? 1 : -1
|