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