Lines Matching refs:hb_codepoint_t
106 #define isCombiningL(u) (hb_in_range<hb_codepoint_t> ((u), LBase, LBase+LCount-1))
107 #define isCombiningV(u) (hb_in_range<hb_codepoint_t> ((u), VBase, VBase+VCount-1))
108 #define isCombiningT(u) (hb_in_range<hb_codepoint_t> ((u), TBase+1, TBase+TCount-1))
109 #define isCombinedS(u) (hb_in_range<hb_codepoint_t> ((u), SBase, SBase+SCount-1))
111 #define isL(u) (hb_in_ranges<hb_codepoint_t> ((u), 0x1100u, 0x115Fu, 0xA960u, 0xA97Cu))
112 #define isV(u) (hb_in_ranges<hb_codepoint_t> ((u), 0x1160u, 0x11A7u, 0xD7B0u, 0xD7C6u))
113 #define isT(u) (hb_in_ranges<hb_codepoint_t> ((u), 0x11A8u, 0x11FFu, 0xD7CBu, 0xD7FBu))
115 #define isHangulTone(u) (hb_in_range<hb_codepoint_t> ((u), 0x302Eu, 0x302Fu))
122 hb_codepoint_t unicode) in is_zero_width_char()
124 hb_codepoint_t glyph; in is_zero_width_char()
191 hb_codepoint_t u = buffer->cur().codepoint; in preprocess_text_hangul()
219 hb_codepoint_t chars[2]; in preprocess_text_hangul()
245 hb_codepoint_t l = u; in preprocess_text_hangul()
246 hb_codepoint_t v = buffer->cur(+1).codepoint; in preprocess_text_hangul()
250 hb_codepoint_t t = 0; in preprocess_text_hangul()
266 hb_codepoint_t s = SBase + (l - LBase) * NCount + (v - VBase) * TCount + tindex; in preprocess_text_hangul()
303 hb_codepoint_t s = u; in preprocess_text_hangul()
316 hb_codepoint_t new_s = s + new_tindex; in preprocess_text_hangul()
337 hb_codepoint_t decomposed[3] = {LBase + lindex, in preprocess_text_hangul()