Home
last modified time | relevance | path

Searched refs:li2 (Results 1 – 5 of 5) sorted by relevance

/vim-8.2.3635/src/
H A Ddigraph.c2151 listitem_T *li, *li2; in digraph_getlist_appendpair() local
2167 li2 = listitem_alloc(); in digraph_getlist_appendpair()
2168 if (li2 == NULL) in digraph_getlist_appendpair()
2170 list_append(l2, li2); in digraph_getlist_appendpair()
2171 li2->li_tv.v_type = VAR_STRING; in digraph_getlist_appendpair()
2172 li2->li_tv.v_lock = 0; in digraph_getlist_appendpair()
2179 li2 = listitem_alloc(); in digraph_getlist_appendpair()
2180 if (li2 == NULL) in digraph_getlist_appendpair()
2182 list_append(l2, li2); in digraph_getlist_appendpair()
2183 li2->li_tv.v_type = VAR_STRING; in digraph_getlist_appendpair()
[all …]
H A Ddict.c1201 listitem_T *li2; in dict_list() local
1256 li2 = listitem_alloc(); in dict_list()
1257 if (li2 == NULL) in dict_list()
1259 list_append(l2, li2); in dict_list()
1260 li2->li_tv.v_type = VAR_STRING; in dict_list()
1261 li2->li_tv.v_lock = 0; in dict_list()
1262 li2->li_tv.vval.v_string = vim_strsave(di->di_key); in dict_list()
1264 li2 = listitem_alloc(); in dict_list()
1265 if (li2 == NULL) in dict_list()
1267 list_append(l2, li2); in dict_list()
[all …]
H A Dmbyte.c5499 listitem_T *li2 = *(listitem_T **)a2; in tv_nr_compare() local
5501 return li1->li_tv.vval.v_number - li2->li_tv.vval.v_number; in tv_nr_compare()
H A Dvim9execute.c2861 listitem_T *li2 = list_find(l, n2); in exec_instructions() local
2863 if (li2 == NULL) in exec_instructions()
2866 n2 = list_idx_of_item(l, li2); in exec_instructions()
H A Devalfunc.c7016 listitem_T *li2 = li1->li_next; in find_some_match() local
7017 listitem_T *li3 = li2->li_next; in find_some_match()
7028 li2->li_tv.vval.v_number = (varnumber_T)idx; in find_some_match()