Searched refs:vowel (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DHangulLayoutEngine.cpp136 static le_int32 compose(LEUnicode lead, LEUnicode vowel, LEUnicode trail, LEUnicode &syllable) argument
139 le_int32 vIndex = vowel - VJMO_FIRST;
157 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) argument
166 vowel = VJMO_FIRST + (sIndex % HSYL_LVCNT) / TJMO_COUNT;
176 static le_int32 getCharClass(LEUnicode ch, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) argument
179 vowel = VJMO_FILL;
188 vowel = ch;
197 le_int32 c = decompose(ch, lead, vowel, trail);
274 LEUnicode vowel = 0; local
276 le_int32 chClass = getCharClass(chars[i], lead, vowel, trai
334 LEUnicode vowel = outChars[outStart + 1]; local
[all...]
H A DThaiShaping.cpp68 LEUnicode ThaiShaping::leftAboveVowel(LEUnicode vowel, le_uint8 glyphSet) argument
77 if (vowel >= CH_MAI_HANAKAT && vowel <= CH_SARA_UEE) {
78 return leftAboveVowels[glyphSet][vowel - CH_MAI_HANAKAT];
81 if (vowel == CH_YAMAKKAN && glyphSet == 0) {
85 return vowel;
136 LEUnicode ThaiShaping::lowerBelowVowel(LEUnicode vowel, le_uint8 glyphSet) argument
146 if (vowel >= CH_SARA_U && vowel <= CH_PHINTHU) {
147 return lowerBelowVowels[glyphSet][vowel
[all...]
H A DThaiShaping.h117 static LEUnicode leftAboveVowel(LEUnicode vowel, le_uint8 glyphSet);
118 static LEUnicode lowerBelowVowel(LEUnicode vowel, le_uint8 glyphSet);
/openjdk7/jdk/src/share/classes/java/text/
H A DCollationElementIterator.java326 int vowel;
328 vowel = text.previous();
329 if (isThaiPreVowel(vowel)) {
330 buffer = makeReorderedBuffer(vowel, value, buffer, false);
338 vowel = text.previous();
339 if (isLaoPreVowel(vowel)) {
340 buffer = makeReorderedBuffer(vowel, value, buffer, false);
535 * Determine if a character is a Thai vowel (which sorts after
550 * Determine if a character is a Lao vowel (which sorts after

Completed in 76 milliseconds