Home | History | Annotate | Download | only in layout

Lines Matching refs:vowel

111 static le_int32 compose(LEUnicode lead, LEUnicode vowel, LEUnicode trail, LEUnicode &syllable)
114 le_int32 vIndex = vowel - VJMO_FIRST;
132 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail)
141 vowel = VJMO_FIRST + (sIndex % HSYL_LVCNT) / TJMO_COUNT;
151 static le_int32 getCharClass(LEUnicode ch, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail)
154 vowel = VJMO_FILL;
163 vowel = ch;
172 le_int32 c = decompose(ch, lead, vowel, trail);
249 LEUnicode vowel = 0;
251 int32_t chClass = getCharClass(chars[i], lead, vowel, trail);
270 outChars[outCharCount] = vowel;
309 LEUnicode vowel = outChars[outStart + 1];
316 if (compose(lead, vowel, trail, syllable) == outLength) {