Lines Matching refs:UChar
52 big5_mbc_enc_len(const UChar* p) in big5_mbc_enc_len()
58 big5_mbc_to_code(const UChar* p, const UChar* end) in big5_mbc_to_code()
64 big5_code_to_mbc(OnigCodePoint code, UChar *buf) in big5_code_to_mbc()
70 big5_mbc_case_fold(OnigCaseFoldType flag, const UChar** pp, const UChar* end, in big5_mbc_case_fold()
71 UChar* lower) in big5_mbc_case_fold()
80 const UChar** pp, const UChar* end)
114 static UChar*
115 big5_left_adjust_char_head(const UChar* start, const UChar* s) in big5_left_adjust_char_head()
117 const UChar *p; in big5_left_adjust_char_head()
120 if (s <= start) return (UChar* )s; in big5_left_adjust_char_head()
132 if (p + len > s) return (UChar* )p; in big5_left_adjust_char_head()
134 return (UChar* )(p + ((s - p) & ~1)); in big5_left_adjust_char_head()
138 big5_is_allowed_reverse_match(const UChar* s, const UChar* end ARG_UNUSED) in big5_is_allowed_reverse_match()
140 const UChar c = *s; in big5_is_allowed_reverse_match()