Home
last modified time | relevance | path

Searched refs:cmp_flags (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/src/
H A Dcharset.c1677 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII)) in vim_toupper()
1693 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII)) in vim_toupper()
1703 if (c >= 0x80 || !(cmp_flags & CMP_KEEPASCII)) in vim_tolower()
1719 if (c < 0x80 && (cmp_flags & CMP_KEEPASCII)) in vim_tolower()
H A Dmbyte.c3557 if (a < 128 && (cmp_flags & CMP_KEEPASCII)) in utf_toupper()
3562 if (!(cmp_flags & CMP_INTERNAL)) in utf_toupper()
3589 if (a < 128 && (cmp_flags & CMP_KEEPASCII)) in utf_tolower()
3594 if (!(cmp_flags & CMP_INTERNAL)) in utf_tolower()
H A Doptionstr.c106 (void)opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE); in didset_string_options()
2012 if (opt_strings_flags(p_cmp, p_cmp_values, &cmp_flags, TRUE) != OK) in did_set_string_option()
H A Doption.h479 EXTERN unsigned cmp_flags; variable