Home
last modified time | relevance | path

Searched refs:TOLOWER_LOC (Results 1 – 8 of 8) sorted by relevance

/vim-8.2.3635/src/
H A Dmacros.h68 # define TOLOWER_LOC(c) tolower_tab[(c) & 255] macro
72 # define TOLOWER_LOC(c) (isupper(c) ? tolower(c) : (c)) macro
75 # define TOLOWER_LOC tolower macro
H A Dstrings.c480 *p = TOLOWER_LOC(*p); // note that tolower() can be a macro in strlow_save()
545 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2); in vim_stricmp()
570 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2); in vim_strnicmp()
H A Dcharset.c480 GA_CHAR(i) = TOLOWER_LOC(GA_CHAR(i)); in str_foldcase()
482 buf[i] = TOLOWER_LOC(buf[i]); in str_foldcase()
1721 return TOLOWER_LOC(c); in vim_tolower()
H A Dmenu.c2135 key = TOLOWER_LOC(key); in gui_is_menu_shortcut()
2138 || (menu->mnemonic < 256 && TOLOWER_LOC(menu->mnemonic) == key)) in gui_is_menu_shortcut()
H A Dcindent.c4066 && TOLOWER_LOC(keytyped) == TOLOWER_LOC((int)p[-1]))) in in_cinkeys()
H A Ddiff.c2008 || TOLOWER_LOC(*p1) != TOLOWER_LOC(*p2))) in diff_equal_char()
H A Dmessage.c3888 *to = (char_u)TOLOWER_LOC(*from); in copy_char()
H A Dmbyte.c3600 return TOLOWER_LOC(a); in utf_tolower()