Lines Matching defs:isASCII
885 =for apidoc Am|bool|isASCII|UV ch
898 C<isASCII_L1()> are identical to C<isASCII()>.
907 UTF-8 or not), C<isASCII> will give the correct results when called with any
1513 # define isASCII(c) (((WIDEST_UTYPE) ASSERT_NOT_PTR(c)) < 128)
1681 # define isASCII(c) generic_isCC_(c, CC_ASCII_)
1772 # define isASCII(c) (isCNTRL_A(c) || isPRINT_A(c))
1773 # else /* isASCII is already defined for ASCII platforms, so can use that to
1775 # define isCNTRL_A(c) (isASCII(c) && ! isPRINT_A(c))
1847 #define isASCII_A(c) isASCII(c)
1848 #define isASCII_L1(c) isASCII(c)
1866 #define toLOWER(c) (isASCII(c) ? toLOWER_LATIN1(c) : (c))
1867 #define toUPPER(c) (isASCII(c) ? toUPPER_LATIN1_MOD(c) : (c))
1952 # define is_posix_ASCII(c) isASCII(c)
2167 #define isASCII_uvchr(c) isASCII(c)
2258 * malformed, they do so. For example isASCII is accurate in spite of any
2311 (isASCII(*(p))) \
2343 (__ASSERT_(_utf8_safe_assert(p, e)) isASCII(*(p)))