Searched refs:iscntrl (Results 1 – 25 of 65) sorted by relevance
123
23 int iscntrl(int c);74 #ifdef iscntrl75 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iscntrl(int __c) {return iscntrl(__c);}76 #undef iscntrl77 inline _LIBCPP_INLINE_VISIBILITY int iscntrl(int __c) {return __libcpp_iscntrl(__c);}78 #else // iscntrl79 using ::iscntrl;80 #endif // iscntrl
56 #undef iscntrl72 using ::iscntrl;
51 int iscntrl(int);90 #define iscntrl(c) __sbistype((c), _CTYPE_C) macro
49 ((c1) > 0xff || !iscntrl((int)c1)) && ((c2) > 0xff || \50 !iscntrl((int)c2)))
86 #undef iscntrl88 iscntrl(c) in iscntrl() function
12 iscntrl;
233 # define IscntrlM(c) (((Char)(c) & QUOTE) ? 0 : iscntrl((tcshuc) (c)))236 # define Iscntrl(c) (((Char)(c) & QUOTE) ? 0 : iscntrl((tcshuc) (c)))275 # define IscntrlM(c) (((Char)(c) & QUOTE) ? 0 : iscntrl( oem_it((tcshuc)(c))))280 # define Iscntrl(c) (((Char)(c) & QUOTE) ? 0 : iscntrl( oem_it((tcshuc)(c))))
156 if (iscntrl(c) && (ASC(c) < 0x80 || MB_CUR_MAX == 1)) { in xputchar()
19 { "cntrl", iscntrl },
125 if (iscntrl((u_char)c)) { in vis()
37 using std::iscntrl;
101 if (c && (!isprint(c) || c == '"' || c == '\\' || iscntrl(c))) { in main()
207 #define apr_iscntrl(c) (iscntrl(((unsigned char)(c))))
63 __ret = iscntrl(__c); in _GLIBCXX_BEGIN_NAMESPACE()
175 if (iscntrl(c)) {
77 __testis = iscntrl(__c); in _GLIBCXX_BEGIN_NAMESPACE()
95 } else if (is8bits(ChCharOf(ch)) && iscntrl(ChCharOf(ch))) { in NCURSES_EXPORT()
110 cscntrl.v[i] = ISASCII(i) && iscntrl(i); in cset_init()
80 #define ISCNTRL iscntrl
49 #define REALCTL(s) (UChar(*(s)) < 127 && iscntrl(UChar(*(s))))
91 ? (iscntrl(UChar(test)) in NCURSES_EXPORT()
188 #define ISCNTRL(C) (IN_CTYPE_DOMAIN (C) && iscntrl (C))
66 iscntrl(_CharT, const locale&);
632 if (iscntrl(ch)) { in key__decode_char()678 if (iscntrl((unsigned char) *p)) { in key__decode_str()
886 | CCE_CNTRL { CCL_EXPR(iscntrl); }907 | CCE_NEG_CNTRL { CCL_NEG_EXPR(iscntrl); }