Lines Matching refs:funcexe
1917 funcexe_T funcexe; in item_compare2() local
1937 CLEAR_FIELD(funcexe); in item_compare2()
1938 funcexe.evaluate = TRUE; in item_compare2()
1939 funcexe.partial = partial; in item_compare2()
1940 funcexe.selfdict = sortinfo->item_compare_selfdict; in item_compare2()
1941 res = call_func(func_name, -1, &rettv, 2, argv, &funcexe); in item_compare2()
3182 funcexe_T funcexe; in f_reduce() local
3206 vim_memset(&funcexe, 0, sizeof(funcexe)); in f_reduce()
3207 funcexe.evaluate = TRUE; in f_reduce()
3208 funcexe.partial = partial; in f_reduce()
3247 r = call_func(func_name, -1, rettv, 2, argv, &funcexe); in f_reduce()
3290 if (call_func(func_name, -1, rettv, 2, argv, &funcexe) == FAIL) in f_reduce()