Home | History | Annotate | Download | only in i18n

Lines Matching refs:Hangul

261         // Hangul is decomposed on the fly during collation,
263 optimizeSet.remove(Hangul::HANGUL_BASE, Hangul::HANGUL_END);
659 // The runtime code decomposes Hangul syllables on the fly,
665 if(Hangul::isJamoL(c) || Hangul::isJamoV(c)) {
666 // While handling a Hangul syllable, contractions starting with Jamo L or V
673 if(Hangul::isJamoL(c) ||
674 (Hangul::isJamoV(c) && Hangul::isJamoL(nfdString.charAt(nfdLength - 2)))) {
676 // generating Hangul syllables in addTailComposites() (588 for a Jamo L),
677 // or decomposing a following Hangul syllable on the fly, during contraction matching.
682 // A Hangul syllable completely inside a contraction is ok.
687 // (While handling a Hangul syllable, prefixes on Jamo V or T
1130 // No closure to Hangul syllables since we decompose them on the fly.
1131 if(Hangul::isJamoL(lastStarter)) { return; }
1277 // Do not map strings that start with Hangul syllables: We decompose those on the fly.
1278 return !isFCD(s, errorCode) || Hangul::isHangul(s.charAt(0));
1290 // Hangul is decomposed on the fly during collation.
1291 composites.remove(Hangul::HANGUL_BASE, Hangul::HANGUL_END);