Lines Matching refs:where

449     where_T	where = WHERE_INIT;  in check_typval_arg_type()  local
451 where.wt_index = arg_idx; in check_typval_arg_type()
452 where.wt_func_name = func_name; in check_typval_arg_type()
453 return check_typval_type(expected, actual_tv, where); in check_typval_arg_type()
461 check_typval_type(type_T *expected, typval_T *actual_tv, where_T where) in check_typval_type() argument
480 res = check_type(expected, actual_type, TRUE, where); in check_typval_type()
494 where_T where = WHERE_INIT; in arg_type_mismatch() local
496 where.wt_index = arg_idx; in arg_type_mismatch()
497 type_mismatch_where(expected, actual, where); in arg_type_mismatch()
501 type_mismatch_where(type_T *expected, type_T *actual, where_T where) in type_mismatch_where() argument
507 if (where.wt_index > 0) in type_mismatch_where()
509 if (where.wt_func_name == NULL) in type_mismatch_where()
510 semsg(_(where.wt_variable in type_mismatch_where()
513 where.wt_index, typename1, typename2); in type_mismatch_where()
515 semsg(_(where.wt_variable in type_mismatch_where()
518 where.wt_index, typename1, typename2, where.wt_func_name); in type_mismatch_where()
520 else if (where.wt_func_name == NULL) in type_mismatch_where()
525 typename1, typename2, where.wt_func_name); in type_mismatch_where()
536 check_type(type_T *expected, type_T *actual, int give_msg, where_T where) in check_type() argument
557 type_mismatch_where(expected, actual, where); in check_type()
565 FALSE, where); in check_type()
574 FALSE, where); in check_type()
590 where) == FAIL) in check_type()
598 type_mismatch_where(expected, actual, where); in check_type()