Home
last modified time | relevance | path

Searched refs:GET_CATEGORY (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
Duchar.c58 return (int8_t)GET_CATEGORY(props); in u_charType()
69 return GET_CATEGORY(value); in _enumTypeValue()
98 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower()
106 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper()
114 return (UBool)(GET_CATEGORY(props)==U_TITLECASE_LETTER); in u_istitle()
122 return (UBool)(GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER); in u_isdigit()
138 return (UBool)(GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER); in u_isxdigit()
176 return (UBool)(GET_CATEGORY(props)!=0); in u_isdefined()
243 return (UBool)(GET_CATEGORY(props)==U_SPACE_SEPARATOR); in u_isblank()
274 return (UBool)((GET_CATEGORY(props)==U_SPACE_SEPARATOR) || u_isgraphPOSIX(c)); in u_isprintPOSIX()
[all …]
Duprops.h61 #define GET_CATEGORY(props) ((props)&0x1f) macro
62 #define CAT_MASK(props) U_MASK(GET_CATEGORY(props))