Home
last modified time | relevance | path

Searched refs:uf_ret_type (Results 1 – 5 of 5) sorted by relevance

/vim-8.2.3635/src/
H A Dvim9compile.c3725 if (ufunc->uf_ret_type->tt_type == VAR_VOID) in compile_lambda()
3726 ufunc->uf_ret_type = &t_unknown; in compile_lambda()
3792 if (ufunc->uf_ret_type == NULL || ufunc->uf_ret_type->tt_type == VAR_VOID) in get_lambda_tv_and_compile()
3793 ufunc->uf_ret_type = &t_unknown; in get_lambda_tv_and_compile()
5703 || cctx->ctx_ufunc->uf_ret_type == &t_unknown in compile_return()
5704 || cctx->ctx_ufunc->uf_ret_type == &t_any)) in compile_return()
5706 && cctx->ctx_ufunc->uf_ret_type == &t_unknown)) in compile_return()
5708 cctx->ctx_ufunc->uf_ret_type = stack_type; in compile_return()
10200 if (ufunc->uf_ret_type->tt_type == VAR_UNKNOWN) in compile_def_function()
10201 ufunc->uf_ret_type = &t_void; in compile_def_function()
[all …]
H A Duserfunc.c442 fp->uf_ret_type = &t_void; in parse_return_type()
447 fp->uf_ret_type = parse_type(&p, &fp->uf_type_list, TRUE); in parse_return_type()
448 if (fp->uf_ret_type == NULL) in parse_return_type()
450 fp->uf_ret_type = &t_void; in parse_return_type()
1465 fp->uf_ret_type = parse_type(&ret_type, in get_lambda_tv()
1467 if (fp->uf_ret_type == NULL) in get_lambda_tv()
1471 fp->uf_ret_type = &t_unknown; in get_lambda_tv()
2348 fp->uf_ret_type = ufunc->uf_ret_type; in copy_func()
3506 if (fp->uf_ret_type != &t_void) in list_func_head()
3511 msg_puts(type_name(fp->uf_ret_type, &tofree)); in list_func_head()
[all …]
H A Dstructs.h1632 type_T *uf_ret_type; // return type member
H A Deval.c3549 if (ufunc->uf_ret_type->tt_type == VAR_VOID) in eval7()
3550 ufunc->uf_ret_type = &t_unknown; in eval7()
H A Dvim9execute.c4919 if (ufunc->uf_ret_type == &t_void) in call_def_function()