Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dvim9type.c373 type->tt_min_argcount -= tv->vval.v_partial->pt_argc; in typval2type_int()
386 type->tt_min_argcount = min_argcount; in typval2type_int()
391 type->tt_min_argcount -= tv->vval.v_partial->pt_argc; in typval2type_int()
576 && actual->tt_min_argcount != -1 in check_type()
578 || (actual->tt_argcount < expected->tt_min_argcount in check_type()
619 if (argcount < type->tt_min_argcount - varargs) in check_argument_types()
922 type->tt_min_argcount = first_optional == -1 in parse_type()
1093 (*dest)->tt_min_argcount = in common_type()
1094 type1->tt_min_argcount < type2->tt_min_argcount in common_type()
1095 ? type1->tt_min_argcount : type2->tt_min_argcount; in common_type()
[all …]
H A Dstructs.h1417 int8_T tt_min_argcount; // number of non-optional arguments member
H A Dvim9compile.c2123 if (argcount < type->tt_min_argcount - varargs) in generate_PCALL()
2147 else if (i >= type->tt_min_argcount in generate_PCALL()
10323 ufunc->uf_func_type->tt_min_argcount = in set_function_type()
H A Duserfunc.c3293 check_type.tt_min_argcount += partial->pt_argc; in call_func()