Home
last modified time | relevance | path

Searched refs:VAR_ANY (Results 1 – 16 of 16) sorted by relevance

/vim-8.2.3635/src/
H A Dtypval.c89 case VAR_ANY: in free_tv()
159 case VAR_ANY: in clear_tv()
245 case VAR_ANY: in tv_get_bool_or_number_chk()
345 case VAR_ANY: in tv_get_float()
980 case VAR_ANY: in tv_get_string_buf_chk_strict()
1138 case VAR_ANY: in copy_tv()
1613 case VAR_ANY: in tv_equal()
H A Dvim9type.c111 if (member_type == NULL || member_type->tt_type == VAR_ANY) in get_list_type()
140 if (member_type == NULL || member_type->tt_type == VAR_ANY) in get_dict_type()
543 && !(expected->tt_type == VAR_ANY && actual->tt_type != VAR_VOID)) in check_type()
994 case VAR_ANY: in equal_type()
1145 case VAR_ANY: return "any"; in vartype_name()
H A Devalfunc.c230 if (type->tt_type == VAR_ANY in arg_float_or_nr()
315 if (type->tt_type == VAR_ANY in arg_list_or_blob()
328 if (type->tt_type == VAR_ANY in arg_string_or_nr()
341 if (type->tt_type == VAR_ANY in arg_buffer()
354 if (type->tt_type == VAR_ANY in arg_buffer_or_dict_any()
369 if (type->tt_type == VAR_ANY in arg_lnum()
403 if (type->tt_type == VAR_ANY in arg_string_or_list_any()
416 if (type->tt_type == VAR_ANY in arg_string_or_blob()
3247 case VAR_ANY: in f_empty()
6668 case VAR_ANY: in f_len()
[all …]
H A Dvim9compile.c641 case VAR_ANY: in may_generate_2STRING()
682 || type2 == VAR_ANY))) in check_number_or_float()
715 && type1->tt_type != VAR_ANY in generate_add_instr()
716 && type2->tt_type != VAR_ANY in generate_add_instr()
755 return VAR_ANY; in operator_type()
820 if (vartype == VAR_ANY) in generate_two_op()
846 type1 = VAR_ANY; in get_compare_isn()
848 type2 = VAR_ANY; in get_compare_isn()
866 else if (type1 == VAR_ANY || type2 == VAR_ANY in get_compare_isn()
6785 dest_type = VAR_ANY; in compile_assign_unlet()
[all …]
H A Deval.c1466 case VAR_ANY: in tv_op()
4114 case VAR_ANY: in check_can_index()
4203 case VAR_ANY: in eval_index_inner()
5092 case VAR_ANY: in echo_string_core()
5794 if (rettv->v_type == VAR_ANY) in handle_subscript()
6006 case VAR_ANY: in item_copy()
H A Dvim9script.c796 if (type->tt_type == VAR_ANY) in vim9_declare_scriptvar()
H A Djson.c356 case VAR_ANY: in json_encode_item()
H A Dtesting.c1090 case VAR_ANY: in f_test_refcount()
H A Devalvars.c1912 case VAR_ANY: in item_lock()
2627 rettv->v_type = VAR_ANY; in eval_variable()
H A Dglobals.h409 EXTERN type_T t_any INIT6(VAR_ANY, 0, 0, TTFLAG_STATIC, NULL, NULL);
H A Dstructs.h1395 VAR_ANY, // used for "any" type enumerator
H A Dvim9execute.c2445 if (dest_type == VAR_ANY) in exec_instructions()
5971 case VAR_ANY: in tv2bool()
H A Dviminfo.c1374 case VAR_ANY: in write_viminfo_varlist()
H A Dif_py_both.h6424 case VAR_ANY: in ConvertToPyObject()
/vim-8.2.3635/runtime/doc/
H A Dtodo.txt65 given the type number. Can we use VAR_ANY?
H A Dversion8.txt44314 Solution: Use VAR_ANY for "any" and VAR_UNKNOWN for "no type".