Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dvim9type.c129 type->tt_argcount = 0; in get_list_type()
158 type->tt_argcount = 0; in get_dict_type()
175 type->tt_argcount = argcount; in alloc_func_type()
385 type->tt_argcount = argcount; in typval2type_int()
579 || actual->tt_argcount > expected->tt_argcount))) in check_type()
624 if (!varargs && type->tt_argcount >= 0 && argcount > type->tt_argcount) in check_argument_types()
921 type->tt_argcount = argcount; in parse_type()
1012 || type1->tt_argcount != type2->tt_argcount) in equal_type()
1014 if (type1->tt_argcount < 0 in equal_type()
1071 if (type1->tt_argcount == type2->tt_argcount in common_type()
[all …]
H A Dvim9compile.c1033 && (actual->tt_member == &t_any || actual->tt_argcount < 0) in use_typecheck()
2119 if (type->tt_argcount != -1) in generate_PCALL()
2128 if (!varargs && argcount > type->tt_argcount) in generate_PCALL()
2144 if (varargs && i >= type->tt_argcount - 1) in generate_PCALL()
2146 type->tt_argcount - 1]->tt_member; in generate_PCALL()
10322 ufunc->uf_func_type->tt_argcount = argcount + varargs; in set_function_type()
H A Dstructs.h1416 int8_T tt_argcount; // for func, incl. vararg, -1 for unknown member
H A Duserfunc.c3286 && funcexe->check_type->tt_argcount != -1) in call_func()
3292 check_type.tt_argcount += partial->pt_argc; in call_func()