Searched refs:nextcmd (Results 1 - 11 of 11) sorted by relevance

/macosx-10.9.5/vim-53/src/proto/
H A Deval.pro17 int eval_to_bool __ARGS((char_u *arg, int *error, char_u **nextcmd, int skip));
18 char_u *eval_to_string_skip __ARGS((char_u *arg, char_u **nextcmd, int skip));
20 char_u *eval_to_string __ARGS((char_u *arg, char_u **nextcmd, int convert));
21 char_u *eval_to_string_safe __ARGS((char_u *arg, char_u **nextcmd, int use_sandbox));
25 typval_T *eval_expr __ARGS((char_u *arg, char_u **nextcmd));
/macosx-10.9.5/vim-53/src/
H A Dex_eval.c886 result = eval_to_bool(eap->arg, &error, &eap->nextcmd, skip);
1000 result = eval_to_bool(eap->arg, &error, &eap->nextcmd, skip);
1063 result = eval_to_bool(eap->arg, &error, &eap->nextcmd, skip);
1082 fi = eval_for_line(eap->arg, &error, &eap->nextcmd, skip);
1286 value = eval_to_string_skip(arg, &eap->nextcmd, eap->skip);
1510 eap->nextcmd = find_nextcmd(eap->arg);
1616 eap->nextcmd = find_nextcmd(end);
H A Deval.c417 static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
1260 eval_to_bool(arg, error, nextcmd, skip)
1263 char_u **nextcmd;
1271 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
1290 * only parsing to "nextcmd" is done, without reporting errors. Return
1294 eval_to_string_skip(arg, nextcmd, skip)
1296 char_u **nextcmd;
1304 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
1338 eval_to_string(arg, nextcmd, convert)
1340 char_u **nextcmd;
18657 char_u *nextcmd = NULL; local
[all...]
H A Dex_docmd.c2072 * If we find a '|' or '\n' we set ea.nextcmd.
2075 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2415 ea.nextcmd = p + 1;
2753 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2754 ea.nextcmd = NULL;
2760 return ea.nextcmd;
4553 * eap->nextcmd correct.
4578 if (eap->nextcmd != NULL)
4579 i += (int)STRLEN(eap->nextcmd);/* ad
[all...]
H A Dex_cmds.c409 eap->nextcmd = check_nextcmd(p);
3938 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
3940 p = vim_strchr(eap->nextcmd, NL);
3942 p = eap->nextcmd + STRLEN(eap->nextcmd);
3943 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
3946 eap->nextcmd = p;
4464 eap->nextcmd
[all...]
H A Dsyntax.c3335 eap->nextcmd = find_nextcmd(arg);
3360 eap->nextcmd = find_nextcmd(arg);
3384 eap->nextcmd = find_nextcmd(arg);
3554 eap->nextcmd = find_nextcmd(arg);
3689 eap->nextcmd = check_nextcmd(eap->arg);
3727 eap->nextcmd = check_nextcmd(eap->arg);
3748 eap->nextcmd = find_nextcmd(arg);
3829 eap->nextcmd = check_nextcmd(arg);
4643 eap->nextcmd = find_nextcmd(arg);
4810 eap->nextcmd
[all...]
H A Dfileio.c7766 AutoCmd *nextcmd; /* next AutoCmd to execute */ member in struct:AutoPatCmd
9387 patcmd.nextcmd = NULL;
9583 apc->nextcmd = ap->cmds;
9621 while (acp->nextcmd != NULL && acp->nextcmd->cmd == NULL)
9622 if (acp->nextcmd->last)
9623 acp->nextcmd = NULL;
9625 acp->nextcmd = acp->nextcmd->next;
9627 if (acp->nextcmd !
[all...]
H A Dif_perl.xs564 eval_to_string(arg, nextcmd, dolist)
566 char_u **nextcmd;
H A Dex_cmds.h1155 char_u *nextcmd; /* next command (NULL if none) */ member in struct:exarg
H A Dex_cmds2.c2802 openscript(fname, global_busy || listcmd_busy || eap->nextcmd != NULL
/macosx-10.9.5/vim-53/src/testdir/
H A Dtest49.vim8623 call NEXT('echo novar') " X: 1 * 1 (checks nextcmd)
8625 call NEXT('let novar #') " X: 0 * 2 (skips nextcmd)
8627 call NEXT('unlet novar #') " X: 0 * 4 (skips nextcmd)
8629 call NEXT('let {novar}') " X: 0 * 8 (skips nextcmd)
8631 call NEXT('unlet{ novar}') " X: 0 * 16 (skips nextcmd)

Completed in 467 milliseconds