Home
last modified time | relevance | path

Searched refs:TOLOWER_ASC (Results 1 – 18 of 18) sorted by relevance

/vim-8.2.3635/src/
H A Dhardcopy.c422 && TOLOWER_ASC(printer_opts[OPT_PRINT_NUMBER].string[0]) == 'y'); in prt_use_number()
612 && TOLOWER_ASC(printer_opts[OPT_PRINT_SYNTAX].string[0]) != 'a') in ex_hardcopy()
614 (TOLOWER_ASC(printer_opts[OPT_PRINT_SYNTAX].string[0]) == 'y'); in ex_hardcopy()
667 && TOLOWER_ASC(printer_opts[OPT_PRINT_JOBSPLIT].string[0]) == 'y'); in ex_hardcopy()
912 && TOLOWER_ASC(printer_opts[OPT_PRINT_FORMFEED].string[0]) in hardcopy_line()
938 && TOLOWER_ASC(printer_opts[OPT_PRINT_WRAP].string[0]) in hardcopy_line()
2483 (TOLOWER_ASC(mbfont_opts[OPT_MBFONT_USECOURIER].string[0]) == 'y'); in mch_print_init()
2488 (TOLOWER_ASC(mbfont_opts[OPT_MBFONT_ASCII].string[0]) == 'y')) in mch_print_init()
2506 || TOLOWER_ASC(printer_opts[OPT_PRINT_PORTRAIT].string[0]) == 'y'); in mch_print_init()
2585 || TOLOWER_ASC(printer_opts[OPT_PRINT_COLLATE].string[0]) == 'y'); in mch_print_init()
H A Dhighlight.c2266 c = TOLOWER_ASC(c); in hex_digit()
3057 if (TOLOWER_ASC(what[0]) == 'f' && TOLOWER_ASC(what[1]) == 'g') in highlight_color()
3059 else if (TOLOWER_ASC(what[0]) == 'f' && TOLOWER_ASC(what[1]) == 'o' in highlight_color()
3060 && TOLOWER_ASC(what[2]) == 'n' && TOLOWER_ASC(what[3]) == 't') in highlight_color()
3062 else if (TOLOWER_ASC(what[0]) == 's' && TOLOWER_ASC(what[1]) == 'p') in highlight_color()
3064 else if (TOLOWER_ASC(what[0]) == 'u' && TOLOWER_ASC(what[1]) == 'l') in highlight_color()
3066 else if (!(TOLOWER_ASC(what[0]) == 'b' && TOLOWER_ASC(what[1]) == 'g')) in highlight_color()
H A Dhelp.c771 && TOLOWER_ASC(fname[7]) == 'x' in fix_help_buffer()
1229 && TOLOWER_ASC(files[i][len - 1]) == 'x') in do_helptags()
1232 lang[0] = TOLOWER_ASC(files[i][len - 3]); in do_helptags()
1233 lang[1] = TOLOWER_ASC(files[i][len - 2]); in do_helptags()
H A Dmacros.h82 # define TOLOWER_ASC(c) (isupper(c) ? tolower(c) : (c)) macro
85 # define TOLOWER_ASC(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) + ('a' - 'A')) macro
H A Dmain.c1850 if (TOLOWER_ASC(initstr[0]) == 'r') in parse_command_name()
1857 if (TOLOWER_ASC(initstr[0]) == 'e' in parse_command_name()
1858 && (TOLOWER_ASC(initstr[1]) == 'v' in parse_command_name()
1859 || TOLOWER_ASC(initstr[1]) == 'g')) in parse_command_name()
1869 if (TOLOWER_ASC(initstr[0]) == 'g') in parse_command_name()
1971 c = TOLOWER_ASC(c); in command_line_scan()
H A Dmisc2.c1646 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j])) in get_special_key_code()
2089 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a') in parse_shape_opt()
2186 if (TOLOWER_ASC(i) == 'v') in parse_shape_opt()
H A Dos_vms.c306 name[i] = TOLOWER_ASC(name[i]); in vms_tolower()
H A Dmbyte.c3590 return TOLOWER_ASC(a); in utf_tolower()
4501 *p++ = TOLOWER_ASC(*s); in enc_canonize()
4615 buf[i] = TOLOWER_ASC(s[i]); in enc_locale_env()
H A Devalfunc.c9670 modec = TOLOWER_ASC(mode[0]); in f_synIDattr()
9687 switch (TOLOWER_ASC(what[0])) in f_synIDattr()
9690 if (TOLOWER_ASC(what[1]) == 'g') // bg[#] in f_synIDattr()
9701 if (TOLOWER_ASC(what[1]) == 'n') // inverse in f_synIDattr()
9716 if (TOLOWER_ASC(what[1]) == 'p') // sp[#] in f_synIDattr()
9719 else if (TOLOWER_ASC(what[1]) == 't' && in f_synIDattr()
9720 TOLOWER_ASC(what[2]) == 'r') in f_synIDattr()
9727 if (TOLOWER_ASC(what[1]) == 'l') // ul in f_synIDattr()
9729 else if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c') in f_synIDattr()
H A Dcharset.c1720 return TOLOWER_ASC(c); in vim_tolower()
H A Doptionstr.c1066 *s = TOLOWER_ASC(*s); in did_set_string_option()
H A Dos_mswin.c695 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0) in mch_chdir()
H A Dspellfile.c6007 spin.si_region_name[i * 2] = TOLOWER_ASC(innames[i][len - 2]); in mkspell()
6009 TOLOWER_ASC(innames[i][len - 1]); in mkspell()
H A Doption.c1134 p_hlg[0] = TOLOWER_ASC(p_hlg[3]); in set_helplang_default()
1135 p_hlg[1] = TOLOWER_ASC(p_hlg[4]); in set_helplang_default()
H A Dfileio.c821 if (TOLOWER_ASC(fc) == 'x') in readfile()
H A Dgui_haiku.cc4041 c = TOLOWER_ASC(c); in hex_digit()
H A Dmemline.c1198 TOLOWER_ASC(fname[len - 2])) != NULL in ml_recover()
H A Dex_docmd.c5239 *p = TOLOWER_ASC(*p); in getargopt()