Lines Matching refs:u_hasBinaryProperty
86 * - alpha: u_isUAlphabetic(c) or u_hasBinaryProperty(c, UCHAR_ALPHABETIC)
87 * - lower: u_isULowercase(c) or u_hasBinaryProperty(c, UCHAR_LOWERCASE)
88 * - upper: u_isUUppercase(c) or u_hasBinaryProperty(c, UCHAR_UPPERCASE)
91 * - xdigit: u_isxdigit(c) or u_hasBinaryProperty(c, UCHAR_POSIX_XDIGIT)
92 * - alnum: u_hasBinaryProperty(c, UCHAR_POSIX_ALNUM)
93 * - space: u_isUWhiteSpace(c) or u_hasBinaryProperty(c, UCHAR_WHITE_SPACE)
94 * - blank: u_isblank(c) or u_hasBinaryProperty(c, UCHAR_POSIX_BLANK)
96 * - graph: u_hasBinaryProperty(c, UCHAR_POSIX_GRAPH)
97 * - print: u_hasBinaryProperty(c, UCHAR_POSIX_PRINT)
144 * These constants are used in functions like u_hasBinaryProperty to select
156 * @see u_hasBinaryProperty
1844 u_hasBinaryProperty(UChar32 c, UProperty which);
1848 * Same as u_hasBinaryProperty(c, UCHAR_ALPHABETIC).
1855 * @see u_hasBinaryProperty
1863 * Same as u_hasBinaryProperty(c, UCHAR_LOWERCASE).
1870 * @see u_hasBinaryProperty
1878 * Same as u_hasBinaryProperty(c, UCHAR_UPPERCASE).
1885 * @see u_hasBinaryProperty
1893 * Same as u_hasBinaryProperty(c, UCHAR_WHITE_SPACE).
1906 * @see u_hasBinaryProperty
1943 * @see u_hasBinaryProperty
1964 * @see u_hasBinaryProperty
1993 * @see u_hasBinaryProperty