Lines Matching refs:tt_argcount

76 	ret->tt_args = ALLOC_MULT(type_T *, type->tt_argcount);  in alloc_type()
78 for (i = 0; i < type->tt_argcount; ++i) in alloc_type()
97 for (i = 0; i < type->tt_argcount; ++i) in free_type()
129 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()
372 type->tt_argcount -= tv->vval.v_partial->pt_argc; in typval2type_int()
385 type->tt_argcount = argcount; in typval2type_int()
390 type->tt_argcount -= tv->vval.v_partial->pt_argc; in typval2type_int()
575 if (ret == OK && expected->tt_argcount != -1 in check_type()
577 && (actual->tt_argcount == -1 in check_type()
578 || (actual->tt_argcount < expected->tt_min_argcount in check_type()
579 || actual->tt_argcount > expected->tt_argcount))) in check_type()
586 for (i = 0; i < expected->tt_argcount; ++i) in check_type()
624 if (!varargs && type->tt_argcount >= 0 && argcount > type->tt_argcount) in check_argument_types()
637 if (varargs && i >= type->tt_argcount - 1) in check_argument_types()
638 expected = type->tt_args[type->tt_argcount - 1]->tt_member; 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()
1017 for (i = 0; i < type1->tt_argcount; ++i) in equal_type()
1071 if (type1->tt_argcount == type2->tt_argcount in common_type()
1072 && type1->tt_argcount >= 0) in common_type()
1074 int argcount = type1->tt_argcount; in common_type()
1205 for (i = 0; i < type->tt_argcount; ++i) in type_name()
1227 if (varargs && i == type->tt_argcount - 1) in type_name()
1234 if (type->tt_argcount < 0) in type_name()