Home
last modified time | relevance | path

Searched refs:VVAL_TRUE (Results 1 – 20 of 20) sorted by relevance

/vim-8.2.3635/src/
H A Ddigraph.c2484 rettv->vval.v_number = VVAL_TRUE; in f_digraph_set()
2513 rettv->vval.v_number = VVAL_TRUE; in f_digraph_setlist()
2536 rettv->vval.v_number = VVAL_TRUE; in f_digraph_setlist()
H A Dhighlight.c4077 dict_add_bool(dict, hl_name_table[i], VVAL_TRUE); in highlight_get_attr_dict()
4186 dict_add_bool(dict, "default", VVAL_TRUE); in highlight_get_info()
4190 dict_add_bool(dict, "cleared", VVAL_TRUE); in highlight_get_info()
4314 VVAL_FALSE) == VVAL_TRUE) in hldict_attr_to_str()
4356 if (dict_get_bool(dict, (char_u *)"force", VVAL_FALSE) == VVAL_TRUE) in hlg_add_or_update()
4359 if (dict_get_bool(dict, (char_u *)"default", VVAL_FALSE) == VVAL_TRUE) in hlg_add_or_update()
H A Djson.c202 case VVAL_TRUE: ga_concat(gap, (char_u *)"true"); break; in json_encode_item()
844 cur_item->vval.v_number = VVAL_TRUE; in json_decode_item()
H A Dtypval.c227 return varp->vval.v_number == VVAL_TRUE ? 1 : 0; in tv_get_bool_or_number_chk()
1406 typ1->vval.v_number = n1 ? VVAL_TRUE : VVAL_FALSE; in typval_compare()
1689 rettv->vval.v_number = numval ? VVAL_TRUE : VVAL_FALSE; in eval_option()
H A Dvim9execute.c3583 tv1->vval.v_number = res ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3627 tv1->vval.v_number = res ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3671 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3702 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3726 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
4252 ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
4318 tv->vval.v_number = n ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
5955 return tv->vval.v_number == VVAL_TRUE ? TRUE : FALSE; in tv2bool()
H A Dif_ruby.c1233 if (tv->vval.v_number == VVAL_TRUE) in vim_to_ruby()
1888 rettv->vval.v_number = VVAL_TRUE; in ruby_convert_to_vim_value()
H A Deval.c2534 rettv->vval.v_number = result ? VVAL_TRUE : VVAL_FALSE; in eval2()
2661 rettv->vval.v_number = result ? VVAL_TRUE : VVAL_FALSE; in eval3()
3322 rettv->vval.v_number = n ? VVAL_TRUE : VVAL_FALSE; in eval7t()
3616 rettv->vval.v_number = VVAL_TRUE; in eval7()
3715 val = f == 0.0 ? VVAL_TRUE : VVAL_FALSE; in eval7_leader()
H A Dvim9script.c1025 value->vval.v_number = val ? VVAL_TRUE : VVAL_FALSE; in check_script_var_type()
H A Devalvars.c234 set_vim_var_nr(VV_TRUE, VVAL_TRUE); in evalvars_init()
2137 case VVAL_TRUE: return in_vim9script() ? "true" : "v:true"; in get_var_special_name()
3306 bool_tv.vval.v_number = tv2bool(tv) ? VVAL_TRUE : VVAL_FALSE; in set_var_const()
H A Dpopupmenu.c1140 pum_scrollbar ? VVAL_TRUE : VVAL_FALSE); in pum_set_event_info()
H A Dtesting.c316 && argvars[0].vval.v_number == (isTrue ? VVAL_TRUE : VVAL_FALSE)) in assert_bool()
H A Dvim9compile.c4108 rettv->vval.v_number = v ? VVAL_FALSE : VVAL_TRUE; in apply_leader()
4124 rettv->vval.v_number = VVAL_TRUE; in get_vim_constant()
4721 rettv->vval.v_number = VVAL_TRUE; in compile_expr7()
5212 ? VVAL_TRUE : VVAL_FALSE; in compile_expr4()
5300 tv->vval.v_number = is_true ? VVAL_TRUE : VVAL_FALSE; in compile_and_or()
5360 ? VVAL_TRUE : VVAL_FALSE; in compile_and_or()
H A Dvim.h2071 #define VVAL_TRUE 1L // VAR_BOOL macro
H A Dpopupwin.c2400 rettv->vval.v_number = VVAL_TRUE; in f_popup_filter_menu()
2464 rettv->vval.v_number = VVAL_TRUE; in f_popup_filter_yesno()
H A Dif_lua.c575 if (tv->vval.v_number <= VVAL_TRUE) in luaV_pushtypval()
H A Devalfunc.c2633 && argvars[0].vval.v_number == VVAL_TRUE) in non_zero_arg()
3226 n = argvars[0].vval.v_number != VVAL_TRUE; in f_empty()
7842 ? VVAL_TRUE : VVAL_FALSE; in f_getreginfo()
H A Dviminfo.c1257 || tv.vval.v_number == VVAL_TRUE)) in read_viminfo_varlist()
H A Dfilepath.c1568 rettv.vval.v_number = rettv.vval.v_number == VVAL_TRUE; in checkitem_common()
H A Dif_mzsch.c3128 if (vim_value->vval.v_number <= VVAL_TRUE) in vim_to_mzscheme_impl()
H A Dif_py_both.h6436 case VVAL_TRUE: return ALWAYS_TRUE; in ConvertToPyObject()