Lines Matching refs:is_const
2780 static int compile_expr0_ext(char_u **arg, cctx_T *cctx, int *is_const);
3649 int is_const; in compile_list() local
3669 if (compile_expr0_ext(&p, cctx, &is_const) == FAIL) in compile_list()
3671 if (!is_const) in compile_list()
3820 int is_const; in compile_dict() local
3922 if (compile_expr0_ext(arg, cctx, &is_const) == FAIL) in compile_dict()
3924 if (!is_const) in compile_dict()
5638 compile_expr0_ext(char_u **arg, cctx_T *cctx, int *is_const) in compile_expr0_ext() argument
5648 if (is_const != NULL) in compile_expr0_ext()
5649 *is_const = ppconst.pp_used > 0 || ppconst.pp_is_const; in compile_expr0_ext()
7056 int is_const = FALSE; in compile_assignment() local
7089 r = compile_expr0_ext(&p, cctx, &is_const); in compile_assignment()
7159 cctx, FALSE, is_const) == FAIL) in compile_assignment()