Home
last modified time | relevance | path

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

/dragonfly/contrib/byacc/
H A Dmstring.c171 while (isspace(UCH(*a))) in strnscmp()
173 while (isspace(UCH(*b))) in strnscmp()
177 if (isspace(UCH(*a))) in strnscmp()
179 if (isalnum(UCH(a[-1])) && isalnum(UCH(*b))) in strnscmp()
182 else if (isspace(UCH(*b))) in strnscmp()
184 if (isalnum(UCH(b[-1])) && isalnum(UCH(*a))) in strnscmp()
200 if (!isspace(UCH(*s))) in strnshash()
H A Dreader.c157 int ch = UCH(line[n]); in line_directive()
515 if (isupper(UCH(c))) in keyword()
709 if (isspace(UCH(c))) in copy_code()
717 switch (UCH(c)) in copy_code()
1243 while (i > 0 && (isalnum(UCH(parms[i])) || UCH(parms[i]) == '_')) in copy_param()
1395 c = UCH(s[i]); in get_literal()
1447 bp->value = UCH(*s); in get_literal()
1645 if (isdigit(UCH(c))) in declare_tokens()
1681 if (isdigit(UCH(c))) in declare_expect()
1694 else if (c == '\n' || isalpha(UCH(c)) || !isspace(UCH(c))) in declare_expect()
[all …]
H A Ddefs.h88 #define UCH(c) (unsigned char)(c) macro
166 #define IS_NAME1(c) (isalpha(UCH(c)) || (c) == '_' || (c) == '$')
167 #define IS_NAME2(c) (isalnum(UCH(c)) || (c) == '_' || (c) == '$')
168 #define IS_IDENT(c) (isalnum(UCH(c)) || (c) == '_' || (c) == '.' || (c) == '$')
H A Derror.c53 if (isprint(UCH(*s)) || *s == '\t') in print_pos()
H A DCHANGES4957 * reader.c: use UCH() macro to hide casts.
/dragonfly/contrib/dialog/
H A Dutil.c681 if (UCH(*txt) >= 128) { in is_combining()
790 switch (code = UCH(*txt)) { in dlg_print_text()
858 thisTab = (UCH(*txt) == TAB); in dlg_print_text()
868 int ch = UCH(*txt++); in dlg_print_text()
934 } else if (isblank(UCH(ch)) in dlg_print_line()
970 if (UCH(*wrap_ptr) >= 128) { in dlg_print_line()
2563 ac = UCH(*a++); in dlg_strcmp()
2564 bc = UCH(*b++); in dlg_strcmp()
2626 while (isblank(UCH(*p1))) in dlg_trim_string()
2642 if (isblank(UCH(*p))) { in dlg_trim_string()
[all …]
H A Drc.c146 while (isblank(UCH(str[n])) && str[n] != '\0') in skip_whitespace()
154 while (isalnum(UCH(str[n])) && str[n] != '\0') in skip_keyword()
166 while (*tmp != '\0' && !isblank(UCH(*tmp))) in trim_token()
395 while (!isblank(UCH(line[i])) && line[i] != '=' && line[i] != '\0') in parse_line()
424 while (isblank(UCH((*value)[i])) && i > 0) in parse_line()
H A Dbuttons.c76 cmp2[0] = UCH(*string); in string_to_char()
82 result = UCH(*string); in string_to_char()
145 int check = UCH(label[first]); in get_hotkeys()
199 check = UCH(label[first]); in print_button()
H A Ddlg_keys.c615 while (*s != '\0' && isspace(UCH(*s))) in skip_white()
623 while (*s != '\0' && !isspace(UCH(*s))) in skip_black()
831 } else if (isspace(UCH(*p))) { in dlg_parse_bindkey()
836 if (!isspace(UCH(*p))) { in dlg_parse_bindkey()
H A Dinputstr.c444 chtype ch = UCH(string[inx]); in dlg_index_columns()
449 else if (isprint(UCH(ch))) in dlg_index_columns()
712 chtype ch = UCH(string[j]); in dlg_show_string()
H A Dargv.c77 } else if (!quoted && isspace(UCH(blob[n]))) { in dlg_string_to_argv()
H A Dmixedgauge.c55 if (isdigit(UCH(*given))) { in status_string()
97 } else if (!isspace(UCH(*given))) { in status_string()
H A Dui_getc.c367 ch = (int) UCH(last_getc_bytes[used_last_getc++]); in really_getch()
378 ch = (int) UCH(last_getc_bytes[used_last_getc++]); in really_getch()
H A Ddlg_internals.h226 #define UCH(ch) ((unsigned char)(ch)) macro
H A Dguage.c110 if (tmp != 0 && (*tmp == 0 || isspace(UCH(*tmp))) && value >= 0) { in decode_percent()
H A Ddialog.c458 } else if (!strncmp(arg, "--", (size_t) 2) && isalpha(UCH(arg[2]))) { in isOption()
634 && isalpha(UCH((*argvp)[j][2]))) { in unescape_argv()
654 if (!strncmp(name, "--", 2) && isalpha(UCH(name[2]))) { in findOption()