Home
last modified time | relevance | path

Searched refs:ASCII_ISALNUM (Results 1 – 16 of 16) sorted by relevance

/vim-8.2.3635/src/
H A Dmacros.h107 # define ASCII_ISALNUM(c) isalnum(c) macro
114 # define ASCII_ISALNUM(c) (ASCII_ISALPHA(c) || VIM_ISDIGIT(c)) macro
H A Dhelp.c265 if (ASCII_ISALNUM(*p)) in help_heuristic()
275 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 in help_heuristic()
276 && ASCII_ISALNUM(matched_string[offset - 1])) in help_heuristic()
H A Dvim9type.c658 while (ASCII_ISALNUM(*p) || *p == '_') in skip_type()
765 while (ASCII_ISALNUM(*p) || *p == '_') in parse_type()
H A Dcharset.c842 return ASCII_ISALNUM(c) || c == '_'; in vim_isNormalIDc()
1974 if (strict && n - 1 != maxlen && ASCII_ISALNUM(*ptr)) in vim_str2nr()
H A Dcmdexpand.c1030 while (ASCII_ISALNUM(*p) || *p == '*') in set_one_cmd_context()
1053 while (ASCII_ISALNUM(*p) || *p == '*') // Allow * wild card in set_one_cmd_context()
1059 if (*p == NUL && ASCII_ISALNUM(p[-1])) in set_one_cmd_context()
H A Dvim9script.c404 while (ASCII_ISALNUM(*arg) || *arg == '_') in handle_import()
H A Dregister.c177 if ( (regname > 0 && ASCII_ISALNUM(regname)) in valid_yank_reg()
376 if (c < 0 || (!ASCII_ISALNUM(c) && c != '"')) in do_record()
H A Ddict.c814 for (p = key; ASCII_ISALNUM(*p) || *p == '_' || *p == '-'; ++p) in skip_literal_key()
H A Dusercmd.c1084 while (ASCII_ISALNUM(*p)) in ex_command()
H A Deval.c995 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len) in get_lval()
5731 return ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR; in eval_isnamec()
5751 return ASCII_ISALNUM(c) || c == '_'; in eval_isdictc()
H A Doption.c1349 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_') in do_set()
2581 if (!ASCII_ISALNUM(*s) && vim_strchr((char_u *)allowed, *s) == NULL) in valid_name()
6296 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*') in set_context_in_set_cmd()
H A Doptionstr.c2472 if (!ASCII_ISALNUM(*p) && *p != '-') in did_set_string_option()
H A Dex_docmd.c2029 while (ASCII_ISALNUM(*p)) in do_one_cmd()
3666 while (ASCII_ISALNUM(*p)) in find_ex_command()
3744 while (ASCII_ISALNUM(*p)) in find_ex_command()
H A Duserfunc.c78 while (ASCII_ISALNUM(*p) || *p == '_') in one_function_arg()
961 && (!ASCII_ISALNUM(p[2]) || p[2] == 't' in get_function_body()
H A Dviminfo.c1612 if (!ASCII_ISALNUM(*str) && *str != '-') in read_viminfo_register()
H A Dhighlight.c3444 else if (!ASCII_ISALNUM(*p) && *p != '_') in syn_add_group()