Home | History | Annotate | Download | only in layout

Lines Matching refs:LEUnicode

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