Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Duchar.cpp60 return (int8_t)GET_CATEGORY(props); in u_charType()
72 return GET_CATEGORY(value); in _enumTypeValue()
101 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower()
109 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper()
117 return (UBool)(GET_CATEGORY(props)==U_TITLECASE_LETTER); in u_istitle()
125 return (UBool)(GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER); in u_isdigit()
141 return (UBool)(GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER); in u_isxdigit()
179 return (UBool)(GET_CATEGORY(props)!=0); in u_isdefined()
246 return (UBool)(GET_CATEGORY(props)==U_SPACE_SEPARATOR); in u_isblank()
277 return (UBool)((GET_CATEGORY(props)==U_SPACE_SEPARATOR) || u_isgraphPOSIX(c)); in u_isprintPOSIX()
[all …]
Duprops.h63 #define GET_CATEGORY(props) ((props)&0x1f) macro
64 #define CAT_MASK(props) U_MASK(GET_CATEGORY(props))