Lines Matching refs:actual

1026 use_typecheck(type_T *actual, type_T *expected)  in use_typecheck()  argument
1028 if (actual->tt_type == VAR_ANY in use_typecheck()
1029 || actual->tt_type == VAR_UNKNOWN in use_typecheck()
1030 || (actual->tt_type == VAR_FUNC in use_typecheck()
1033 && (actual->tt_member == &t_any || actual->tt_argcount < 0) in use_typecheck()
1034 && ((actual->tt_member == &t_void) in use_typecheck()
1037 if ((actual->tt_type == VAR_LIST || actual->tt_type == VAR_DICT) in use_typecheck()
1038 && actual->tt_type == expected->tt_type) in use_typecheck()
1040 return use_typecheck(actual->tt_member, expected->tt_member); in use_typecheck()
1054 type_T *actual, in need_type_where() argument
1062 if (expected == &t_bool && actual != &t_bool in need_type_where()
1063 && (actual->tt_flags & TTFLAG_BOOL_OK)) in need_type_where()
1071 if (check_type(expected, actual, FALSE, where) == OK) in need_type_where()
1076 if ((!actual_is_const || actual == &t_any) in need_type_where()
1077 && use_typecheck(actual, expected)) in need_type_where()
1084 type_mismatch_where(expected, actual, where); in need_type_where()
1090 type_T *actual, in need_type() argument
1101 return need_type_where(actual, expected, offset, where, in need_type()
2005 type_T *actual; in generate_CALL() local
2007 actual = ((type_T **)stack->ga_data)[stack->ga_len - argcount + i]; in generate_CALL()
2008 if (actual == &t_special in generate_CALL()
2026 if (need_type(actual, expected, -argcount + i, i + 1, cctx, in generate_CALL()
2029 arg_type_mismatch(expected, actual, i + 1); in generate_CALL()
2140 type_T *actual = ((type_T **)stack->ga_data)[ in generate_PCALL() local
2148 && actual == &t_special) in generate_PCALL()
2152 if (need_type(actual, expected, offset, i + 1, in generate_PCALL()
2155 arg_type_mismatch(expected, actual, i + 1); in generate_PCALL()
4925 type_T *actual; in compile_expr7t() local
4929 actual = ((type_T **)stack->ga_data)[stack->ga_len - 1]; in compile_expr7t()
4930 if (check_type(want_type, actual, FALSE, where) == FAIL) in compile_expr7t()
4932 if (need_type(actual, want_type, -1, 0, cctx, FALSE, FALSE) == FAIL) in compile_expr7t()