Lines Matching refs:ctype

32 #define ONIGENC_IS_UNICODE_ISO_8859_1_CTYPE(code,ctype) \  argument
33 ((EncUNICODE_ISO_8859_1_CtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
81 int ctype; member
131 e->ctype = CODE_RANGES_NUM + UserDefinedPropertyNum; in onig_unicode_define_user_property()
142 onigenc_unicode_is_code_ctype(OnigCodePoint code, unsigned int ctype) in onigenc_unicode_is_code_ctype() argument
146 ctype <= ONIGENC_MAX_STD_CTYPE && in onigenc_unicode_is_code_ctype()
149 return ONIGENC_IS_UNICODE_ISO_8859_1_CTYPE(code, ctype); in onigenc_unicode_is_code_ctype()
152 if (ctype >= CODE_RANGES_NUM) { in onigenc_unicode_is_code_ctype()
153 int index = ctype - CODE_RANGES_NUM; in onigenc_unicode_is_code_ctype()
160 return onig_is_in_code_range((UChar* )CodeRanges[ctype], code); in onigenc_unicode_is_code_ctype()
165 onigenc_unicode_ctype_code_range(int ctype, const OnigCodePoint* ranges[]) in onigenc_unicode_ctype_code_range() argument
167 if (ctype >= CODE_RANGES_NUM) { in onigenc_unicode_ctype_code_range()
168 int index = ctype - CODE_RANGES_NUM; in onigenc_unicode_ctype_code_range()
177 *ranges = CodeRanges[ctype]; in onigenc_unicode_ctype_code_range()
182 onigenc_utf16_32_get_ctype_code_range(OnigCtype ctype, OnigCodePoint* sb_out, in onigenc_utf16_32_get_ctype_code_range() argument
186 return onigenc_unicode_ctype_code_range(ctype, ranges); in onigenc_utf16_32_get_ctype_code_range()
223 return e->ctype; in onigenc_unicode_property_name_to_ctype()
231 if (pc->ctype > ONIGENC_MAX_STD_CTYPE) in onigenc_unicode_property_name_to_ctype()
235 return pc->ctype; in onigenc_unicode_property_name_to_ctype()