Home
last modified time | relevance | path

Searched refs:check_type (Results 1 – 6 of 6) sorted by relevance

/vim-8.2.3635/src/
H A Dvim9type.c480 res = check_type(expected, actual_type, TRUE, where); in check_typval_type()
536 check_type(type_T *expected, type_T *actual, int give_msg, where_T where) in check_type() function
564 ret = check_type(expected->tt_member, actual->tt_member, in check_type()
573 ret = check_type(expected->tt_member, actual->tt_member, in check_type()
588 if (actual->tt_args[i] != &t_any && check_type( in check_type()
H A Duserfunc.c3240 type_T check_type; in call_func() local
3285 if (funcexe->check_type != NULL in call_func()
3286 && funcexe->check_type->tt_argcount != -1) in call_func()
3290 check_type = *funcexe->check_type; in call_func()
3291 funcexe->check_type = &check_type; in call_func()
3292 check_type.tt_argcount += partial->pt_argc; in call_func()
3293 check_type.tt_min_argcount += partial->pt_argc; in call_func()
3298 if (error == FCERR_NONE && funcexe->check_type != NULL && funcexe->evaluate) in call_func()
3301 if (check_argument_types(funcexe->check_type, argvars, argcount, in call_func()
5028 funcexe.check_type = type; in ex_call()
H A Dvim9compile.c1071 if (check_type(expected, actual, FALSE, where) == OK) in need_type_where()
4930 if (check_type(want_type, actual, FALSE, where) == FAIL) in compile_expr7t()
8279 : check_type(lhs_type, item_type, TRUE, where)) in compile_for()
9673 else if (check_type(ufunc->uf_arg_types[arg_idx], val_type, in compile_def_function()
H A Dstructs.h2000 type_T *check_type; // type from funcref or NULL member
H A Deval.c2016 funcexe.check_type = type; in eval_func()
3329 res = check_type(want_type, actual, TRUE, where); in eval7t()
/vim-8.2.3635/src/proto/
H A Dvim9type.pro18 int check_type(type_T *expected, type_T *actual, int give_msg, where_T where);