Lines Matching refs:whitep
2734 may_get_next_line(char_u *whitep, char_u **arg, cctx_T *cctx) in may_get_next_line() argument
2736 *arg = skipwhite(whitep); in may_get_next_line()
2739 if (**arg == NUL || (VIM_ISWHITE(*whitep) && vim9_comment_start(*arg))) in may_get_next_line()
2754 may_get_next_line_error(char_u *whitep, char_u **arg, cctx_T *cctx) in may_get_next_line_error() argument
2756 if (may_get_next_line(whitep, arg, cctx) == FAIL) in may_get_next_line_error()
3346 char_u *whitep = *arg; in compile_arguments() local
3352 if (may_get_next_line(whitep, &p, cctx) == FAIL) in compile_arguments()
3393 whitep = p; in compile_arguments()
3647 char_u *whitep = *arg + 1; in compile_list() local
3654 if (may_get_next_line(whitep, &p, cctx) == FAIL) in compile_list()
3683 whitep = p; in compile_list()
3818 char_u *whitep = *arg + 1; in compile_dict() local
3831 if (may_get_next_line(whitep, arg, cctx) == FAIL) in compile_dict()
3909 whitep = *arg + 1; in compile_dict()
3910 if (!IS_WHITE_OR_NUL(*whitep)) in compile_dict()
3916 if (may_get_next_line(whitep, arg, cctx) == FAIL) in compile_dict()
3928 whitep = *arg; in compile_dict()
3929 if (may_get_next_line(whitep, arg, cctx) == FAIL) in compile_dict()
3941 if (IS_WHITE_OR_NUL(*whitep)) in compile_dict()
3943 semsg(_(e_no_white_space_allowed_before_str_str), ",", whitep); in compile_dict()
3946 whitep = *arg + 1; in compile_dict()
3947 if (!IS_WHITE_OR_NUL(*whitep)) in compile_dict()
3952 *arg = skipwhite(whitep); in compile_dict()