Home
last modified time | relevance | path

Searched refs:actual_tv (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dvim9type.c445 typval_T *actual_tv, in check_typval_arg_type() argument
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
469 if ((actual_tv->v_type == VAR_FUNC && actual_tv->vval.v_string == NULL) in check_typval_type()
470 || (actual_tv->v_type == VAR_PARTIAL in check_typval_type()
471 && actual_tv->vval.v_partial == NULL)) in check_typval_type()
478 actual_type = typval2type(actual_tv, get_copyID(), &type_list, TRUE); in check_typval_type()
H A Dtesting.c712 typval_T actual_tv; in f_assert_fails() local
717 actual_tv.v_type = VAR_NUMBER; in f_assert_fails()
718 actual_tv.vval.v_number = emsg_assert_fails_lnum; in f_assert_fails()
722 actual_tv.v_type = VAR_STRING; in f_assert_fails()
723 actual_tv.vval.v_string = emsg_assert_fails_context; in f_assert_fails()
727 actual_tv.v_type = VAR_STRING; in f_assert_fails()
728 actual_tv.vval.v_string = actual; in f_assert_fails()
731 &argvars[error_found_index], &actual_tv, ASSERT_OTHER); in f_assert_fails()
/vim-8.2.3635/src/proto/
H A Dvim9type.pro13 int check_typval_arg_type(type_T *expected, typval_T *actual_tv, char *func_name, int arg_idx);
14 int check_typval_type(type_T *expected, typval_T *actual_tv, where_T where);