Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dvim9type.c983 equal_type(type_T *type1, type_T *type2, int flags) in equal_type() argument
987 if (type1 == NULL || type2 == NULL) in equal_type()
989 if (type1->tt_type != type2->tt_type) in equal_type()
1012 || type1->tt_argcount != type2->tt_argcount) in equal_type()
1019 && !equal_type(type1->tt_args[i], type2->tt_args[i], in equal_type()
1034 if (equal_type(type1, type2, 0)) in common_type()
1044 *dest = type2; in common_type()
1047 if (type2 == NULL || type2->tt_type == VAR_UNKNOWN) in common_type()
1053 if (type1->tt_type == type2->tt_type) in common_type()
1071 if (type1->tt_argcount == type2->tt_argcount in common_type()
[all …]
H A Dvim9compile.c681 && (type2 == VAR_NUMBER || type2 == VAR_FLOAT in check_number_or_float()
682 || type2 == VAR_ANY))) in check_number_or_float()
701 type_T *type2, in generate_add_instr() argument
767 type_T *type2; in generate_two_op() local
827 && (type2->tt_type == VAR_NUMBER || type2->tt_type == VAR_FLOAT)) in generate_two_op()
847 if (type2 == VAR_UNKNOWN) in get_compare_isn()
848 type2 = VAR_ANY; in get_compare_isn()
850 if (type1 == type2) in get_compare_isn()
868 && (type2 == VAR_NUMBER || type2 == VAR_FLOAT))) in get_compare_isn()
884 || type2 == VAR_BOOL || type2 == VAR_SPECIAL))) in get_compare_isn()
[all …]
/vim-8.2.3635/src/proto/
H A Dvim9type.pro22 int equal_type(type_T *type1, type_T *type2, int flags);
23 void common_type(type_T *type1, type_T *type2, type_T **dest, garray_T *type_gap);