Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dvim9type.c361 if (ufunc->uf_func_type == NULL) in typval2type_int()
363 if (ufunc->uf_func_type != NULL) in typval2type_int()
371 *type = *ufunc->uf_func_type; in typval2type_int()
376 return ufunc->uf_func_type; in typval2type_int()
H A Dvim9script.c586 : (equal_type(imported->imp_type, ufunc->uf_func_type, in handle_import()
623 imported->imp_type = ufunc->uf_func_type; in handle_import()
H A Dvim9compile.c1689 ufunc->uf_func_type == NULL ? &t_func_any : ufunc->uf_func_type; in generate_FUNCREF()
5901 TRUE, ufunc->uf_func_type); in compile_nested_function()
10315 ufunc->uf_func_type = alloc_func_type(ufunc->uf_ret_type, in set_function_type()
10318 if (func_type_add_arg_types(ufunc->uf_func_type, in set_function_type()
10322 ufunc->uf_func_type->tt_argcount = argcount + varargs; in set_function_type()
10323 ufunc->uf_func_type->tt_min_argcount = in set_function_type()
10331 ufunc->uf_func_type->tt_args[i] = &t_any; in set_function_type()
10334 mch_memmove(ufunc->uf_func_type->tt_args, in set_function_type()
10338 ufunc->uf_func_type->tt_args[argcount] = in set_function_type()
10340 ufunc->uf_func_type->tt_flags = TTFLAG_VARARGS; in set_function_type()
[all …]
H A Dstructs.h1639 type_T *uf_func_type; // type of the function, &t_func_any if unknown member
H A Duserfunc.c1213 ufunc->uf_func_type = &t_func_any; in lambda_function_body()
4415 fp->uf_func_type = &t_func_any; in define_function()