Lines Matching refs:ret

2837     int	    ret = OK;  in generate_ppconst()  local
2843 ret = FAIL; in generate_ppconst()
2846 return ret; in generate_ppconst()
3984 int ret; in compile_get_option() local
3988 ret = eval_option(arg, &rettv, TRUE); in compile_get_option()
3989 if (ret == OK) in compile_get_option()
3996 ret = generate_LOAD(cctx, ISN_LOADOPT, 0, name, type); in compile_get_option()
4001 return ret; in compile_get_option()
4012 int ret; in compile_get_env() local
4025 ret = generate_LOAD(cctx, ISN_LOADENV, 0, name, &t_string); in compile_get_env()
4027 return ret; in compile_get_env()
4036 int ret; in compile_get_register() local
4049 ret = generate_LOAD(cctx, ISN_LOADREG, **arg, NULL, &t_string); in compile_get_register()
4051 return ret; in compile_get_register()
4282 int ret; in compile_parenthesis() local
4289 ret = compile_expr1(arg, cctx, ppconst); in compile_parenthesis()
4296 ret = compile_expr0(arg, cctx); in compile_parenthesis()
4302 else if (ret == OK) in compile_parenthesis()
4305 ret = FAIL; in compile_parenthesis()
4307 return ret; in compile_parenthesis()
4649 int ret = OK; in compile_expr7() local
4710 ret = NOTDONE; in compile_expr7()
4724 ret = NOTDONE; in compile_expr7()
4738 ret = NOTDONE; in compile_expr7()
4752 ret = NOTDONE; in compile_expr7()
4760 ret = compile_list(arg, cctx, ppconst); in compile_expr7()
4768 ret = compile_dict(arg, cctx, ppconst); in compile_expr7()
4776 ret = compile_get_option(arg, cctx); in compile_expr7()
4784 ret = compile_get_env(arg, cctx); in compile_expr7()
4792 ret = compile_get_register(arg, cctx); in compile_expr7()
4800 ret = compile_lambda(arg, cctx); in compile_expr7()
4801 if (ret == NOTDONE) in compile_expr7()
4802 ret = compile_parenthesis(arg, cctx, ppconst); in compile_expr7()
4805 default: ret = NOTDONE; in compile_expr7()
4808 if (ret == FAIL) in compile_expr7()
4820 else if (ret == NOTDONE) in compile_expr7()
5200 int ret; in compile_expr4() local
5206 ret = FAIL; in compile_expr4()
5209 ret = typval_compare(tv1, tv2, type, ic); in compile_expr4()
5216 return ret; in compile_expr4()
6882 char_u *ret = NULL; in compile_assignment() local
7349 ret = skipwhite(end); in compile_assignment()
7353 return ret; in compile_assignment()
7455 int ret = OK; in compile_unlet() local
7464 ret = generate_UNLET(cctx, ISN_UNLETENV, p + 1, eap->forceit); in compile_unlet()
7477 ret = compile_lhs(p, &lhs, CMD_unlet, FALSE, 0, cctx); in compile_unlet()
7483 ret = FAIL; in compile_unlet()
7489 ret = compile_assign_unlet(p, &lhs, FALSE, &t_void, cctx); in compile_unlet()
7496 ret = FAIL; in compile_unlet()
7501 ret = generate_UNLET(cctx, ISN_UNLET, p, eap->forceit); in compile_unlet()
7505 return ret; in compile_unlet()
7522 int ret = OK; in compile_lock_unlock() local
7558 ret = FAIL; in compile_lock_unlock()
7564 ret = generate_EXEC(cctx, isn, buf); in compile_lock_unlock()
7569 return ret; in compile_lock_unlock()
9559 int ret = FAIL; in compile_def_function() local
10245 ret = OK; in compile_def_function()
10279 if (ret == OK) in compile_def_function()
10282 ret = FAIL; in compile_def_function()
10298 return ret; in compile_def_function()