Home
last modified time | relevance | path

Searched refs:uf_va_type (Results 1 – 4 of 4) sorted by relevance

/dports/editors/vim/vim-8.2.3745/src/
H A Duserfunc.c420 fp->uf_va_type = &t_list_any; in parse_argument_types()
423 fp->uf_va_type = parse_type(&p, &fp->uf_type_list, TRUE); in parse_argument_types()
424 if (fp->uf_va_type != NULL && fp->uf_va_type->tt_type != VAR_LIST) in parse_argument_types()
431 if (fp->uf_va_type == NULL) in parse_argument_types()
3516 if (fp->uf_va_type != NULL) in list_func_head()
3521 msg_puts(type_name(fp->uf_va_type, &tofree)); in list_func_head()
H A Dvim9execute.c970 if (ufunc->uf_arg_types != NULL || ufunc->uf_va_type != NULL) in call_by_name()
983 else if (ufunc->uf_va_type != NULL) in call_by_name()
984 type = ufunc->uf_va_type->tt_member; in call_by_name()
4835 if (ufunc->uf_va_type != NULL in call_def_function()
4836 && ufunc->uf_va_type != &t_list_any in call_def_function()
4837 && ufunc->uf_va_type->tt_member != &t_any in call_def_function()
4840 type_T *expected = ufunc->uf_va_type->tt_member; in call_def_function()
H A Dvim9compile.c309 *type = cctx->ctx_ufunc->uf_va_type; in arg_exists()
2024 else if (ufunc->uf_va_type == NULL in generate_CALL()
2025 || ufunc->uf_va_type == &t_list_any) in generate_CALL()
2029 expected = ufunc->uf_va_type->tt_member; in generate_CALL()
10377 ufunc->uf_va_type == NULL ? &t_list_any : ufunc->uf_va_type; in set_function_type()
H A Dstructs.h1639 type_T *uf_va_type; // type from "...name: type" or NULL member