Home | History | Annotate | Download | only in unicode

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
1889 u_hasBinaryProperty(UChar32 c, UProperty which);
1893 * Same as u_hasBinaryProperty(c, UCHAR_ALPHABETIC).
1900 * @see u_hasBinaryProperty
1908 * Same as u_hasBinaryProperty(c, UCHAR_LOWERCASE).
1915 * @see u_hasBinaryProperty
1923 * Same as u_hasBinaryProperty(c, UCHAR_UPPERCASE).
1930 * @see u_hasBinaryProperty
1938 * Same as u_hasBinaryProperty(c, UCHAR_WHITE_SPACE).
1951 * @see u_hasBinaryProperty
1988 * @see u_hasBinaryProperty
2009 * @see u_hasBinaryProperty
2038 * @see u_hasBinaryProperty