Searched refs:TOUPPER_ASC (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/vim-55/src/
H A Dascii.h44 #define Ctrl_chr(x) (TOUPPER_ASC(x) ^ 0x40) /* '?' -> DEL, '@' -> ^@, etc. */
H A Dmacros.h79 # define TOUPPER_ASC(c) (islower(c) ? toupper(c) : (c)) macro
82 # define TOUPPER_ASC(c) (((c) < 'a' || (c) > 'z') ? (c) : (c) - ('a' - 'A')) macro
H A Dtag.c1174 i = (int)TOUPPER_ASC(*s1) - (int)TOUPPER_ASC(*s2);
1943 i = (int)TOUPPER_ASC(tagp.tagname[0]);
1985 TOUPPER_ASC(tagp.tagname[0]);
1997 TOUPPER_ASC(tagp.tagname[0]);
H A Dmain.c1760 c = TOUPPER_ASC(c);
3683 if (argtype != ARGTYPE_SEND && TOUPPER_ASC(*sname) == 'G')
H A Dmbyte.c3026 return TOUPPER_ASC(a);
H A Dsyntax.c5855 if (TOUPPER_ASC(**arg) != 'C')
7332 off = TOUPPER_ASC(*arg);
H A Deval.c9283 switch (TOUPPER_ASC(*typestr))
21155 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');

Completed in 148 milliseconds