Lines Matching refs:name_start
4322 char_u *name_start = *end_leader; in compile_subscript() local
4368 if (generate_PCALL(cctx, argcount, name_start, type, TRUE) == FAIL) in compile_subscript()
5791 char_u *name_start = eap->arg; in compile_nested_function() local
5804 if (*name_start == '/') in compile_nested_function()
5806 name_end = skip_regexp(name_start + 1, '/', TRUE); in compile_nested_function()
5811 if (name_end == name_start || *skipwhite(name_end) != '(') in compile_nested_function()
5813 if (!ends_excmd2(name_start, name_end)) in compile_nested_function()
5820 if (generate_DEF(cctx, name_start, name_end - name_start) == FAIL) in compile_nested_function()
5826 if (name_start[1] == ':' && !is_global) in compile_nested_function()
5828 semsg(_(e_namespace_not_supported_str), name_start); in compile_nested_function()
5831 if (check_defined(name_start, name_end - name_start, cctx, FALSE) == FAIL) in compile_nested_function()
5886 char_u *func_name = vim_strnsave(name_start + 2, in compile_nested_function()
5887 name_end - name_start - 2); in compile_nested_function()
5900 lvar_T *lvar = reserve_local(cctx, name_start, name_end - name_start, in compile_nested_function()