Searched refs:usedlen (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/vim-53/src/proto/
H A Dex_docmd.pro49 int find_cmdline_var __ARGS((char_u *src, int *usedlen));
50 char_u *eval_vars __ARGS((char_u *src, char_u *srcstart, int *usedlen, linenr_T *lnump, char_u **errormsg, int *escaped));
H A Deval.pro110 int modify_fname __ARGS((char_u *src, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen));
/macosx-10.9.5/vim-53/src/
H A Deval.c10439 int usedlen = 0; local
10451 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
23008 modify_fname(src, usedlen, fnamep, bufp, fnamelen)
23010 int *usedlen; /* characters after src that are used */
23027 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
23032 *usedlen += 2;
23091 while (src[*usedlen] == ':'
23092 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
23094 *usedlen
[all...]
H A Dex_docmd.c9519 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9520 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9523 find_cmdline_var(src, usedlen)
9525 int *usedlen;
9561 *usedlen = len;
9584 * Returns NULL if no match was found. "usedlen" then still contains the
9588 eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
9591 int *usedlen; /* characters after src that are used */
9620 spec_idx = find_cmdline_var(src, usedlen);
9623 *usedlen
[all...]

Completed in 502 milliseconds