Lines Matching refs:LEUnicode
111 static le_int32 compose(LEUnicode lead, LEUnicode vowel, LEUnicode trail, LEUnicode &syllable) in compose()
127 syllable = (LEUnicode) ((lIndex * VJMO_COUNT + vIndex) * TJMO_COUNT + tIndex + HSYL_FIRST); in compose()
132 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) in decompose()
151 static le_int32 getCharClass(LEUnicode ch, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) in getCharClass()
209 le_int32 HangulOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, … in characterProcessing()
210 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing()
223 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
248 LEUnicode lead = 0; in characterProcessing()
249 LEUnicode vowel = 0; in characterProcessing()
250 LEUnicode trail = 0; in characterProcessing()
307 LEUnicode syllable = 0x0000; in characterProcessing()
308 LEUnicode lead = outChars[outStart]; in characterProcessing()
309 LEUnicode vowel = outChars[outStart + 1]; in characterProcessing()
310 LEUnicode trail = outLength == 3? outChars[outStart + 2] : TJMO_FIRST; in characterProcessing()