HomeSort by relevance Sort by last modified time
    Searched refs:Hangul (Results 1 - 25 of 29) sorted by null

1 2

  /external/icu/icu4c/source/i18n/
collationdatabuilder.h 223 if(i < Hangul::JAMO_L_COUNT) { return Hangul::JAMO_L_BASE + i; }
224 i -= Hangul::JAMO_L_COUNT;
225 if(i < Hangul::JAMO_V_COUNT) { return Hangul::JAMO_V_BASE + i; }
226 i -= Hangul::JAMO_V_COUNT;
228 return Hangul::JAMO_T_BASE + 1 + i;
collationbuilder.cpp 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))))
    [all...]
collationdatabuilder.cpp 320 // Hangul syllables are not tailorable (except via tailoring Jamos).
321 // Always set the Hangul tag to help performance.
325 utrie2_setRange32(trie, Hangul::HANGUL_BASE, Hangul::HANGUL_END, hangulCE32, TRUE, &errorCode);
841 errorCode = U_UNSUPPORTED_ERROR; // We forbid tailoring of Hangul syllables.
    [all...]
collationiterator.cpp 374 c -= Hangul::HANGUL_BASE;
375 UChar32 t = c % Hangul::JAMO_T_COUNT;
376 c /= Hangul::JAMO_T_COUNT;
377 UChar32 v = c % Hangul::JAMO_V_COUNT;
378 c /= Hangul::JAMO_V_COUNT;
    [all...]
collationbasedatabuilder.cpp 127 utrie2_setRange32(trie, Hangul::HANGUL_BASE, Hangul::HANGUL_END, hangulCE32, TRUE, &errorCode);
collationsets.cpp 204 int32_t length = Hangul::decompose(c, jamos);
509 // especially if [start..end] is the complete Hangul range. (assert that)
511 UChar hangul[1] = { 0 }; local
513 hangul[0] = (UChar)c;
514 iter.setText(hangul, hangul + 1);
  /external/icu/icu4c/source/common/
normalizer2impl.cpp 354 return 0; // yesYes and Hangul LV/LVT have ccc=tccc=0
452 /* add Hangul LV syllables and LV+1 because of skippables */
453 for(UChar c=Hangul::HANGUL_BASE; c<Hangul::HANGUL_LIMIT; c+=Hangul::JAMO_T_COUNT) {
457 sa->add(sa->set, Hangul::HANGUL_LIMIT); /* add Hangul+1 to continue with other properties */
642 // Hangul syllable: decompose algorithmically
644 return buffer.appendZeroCC(jamos, jamos+Hangul::decompose(c, jamos), errorCode);
674 // Hangul syllable: decompose algorithmicall
    [all...]
normalizer2impl.h 37 class U_COMMON_API Hangul {
39 /* Korean Hangul and Jamo constants */
77 * Decomposes c, which must be a Hangul syllable, into buffer
95 * Decomposes c, which must be a Hangul syllable, into buffer.
112 Hangul(); // no instantiation
138 // For Hangul composition, replacing the Leading consonant Jamo with the syllable.
  /external/chromium_org/third_party/icu/source/common/
normalizer2impl.cpp 331 return 0; // yesYes and Hangul LV/LVT have ccc=tccc=0
359 /* add Hangul LV syllables and LV+1 because of skippables */
360 for(UChar c=Hangul::HANGUL_BASE; c<Hangul::HANGUL_LIMIT; c+=Hangul::JAMO_T_COUNT) {
364 sa->add(sa->set, Hangul::HANGUL_LIMIT); /* add Hangul+1 to continue with other properties */
518 // Hangul syllable: decompose algorithmically
520 return buffer.appendZeroCC(jamos, jamos+Hangul::decompose(c, jamos), errorCode);
550 // Hangul syllable: decompose algorithmicall
    [all...]
normalizer2impl.h 36 class Hangul {
38 /* Korean Hangul and Jamo constants */
72 * Decomposes c, which must be a Hangul syllable, into buffer
89 Hangul(); // no instantiation
115 // For Hangul composition, replacing the Leading consonant Jamo with the syllable.
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
n2builder.cpp 86 { Hangul::JAMO_L_BASE, Hangul::JAMO_L_BASE+Hangul::JAMO_L_COUNT, 1 },
87 { Hangul::JAMO_V_BASE, Hangul::JAMO_V_BASE+Hangul::JAMO_V_COUNT, Normalizer2Impl::JAMO_VT },
89 { Hangul::JAMO_T_BASE+1, Hangul::JAMO_T_BASE+Hangul::JAMO_T_COUNT, Normalizer2Impl::JAMO_VT },
90 { Hangul::HANGUL_BASE, Hangul::HANGUL_BASE+Hangul::HANGUL_COUNT, 0 }, // will become minYesN
    [all...]
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 86 { Hangul::JAMO_L_BASE, Hangul::JAMO_L_BASE+Hangul::JAMO_L_COUNT, 1 },
87 { Hangul::JAMO_V_BASE, Hangul::JAMO_V_BASE+Hangul::JAMO_V_COUNT, Normalizer2Impl::JAMO_VT },
89 { Hangul::JAMO_T_BASE+1, Hangul::JAMO_T_BASE+Hangul::JAMO_T_COUNT, Normalizer2Impl::JAMO_VT },
90 { Hangul::HANGUL_BASE, Hangul::HANGUL_BASE+Hangul::HANGUL_COUNT, 0 }, // will become minYesN
    [all...]
  /external/icu/icu4c/source/test/intltest/
colldata.cpp 323 // Han ext. A, Han, Jamo, Hangul, Han Ext. B
430 UChar jamoRanges[] = {Hangul::JAMO_L_BASE, Hangul::JAMO_V_BASE, Hangul::JAMO_T_BASE + 1, 0x11FF};
586 // **** this loop may not handle archaic Hangul correctly ****
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListMarker.cpp 476 case Hangul:
565 case Hangul:
915 case Hangul:
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyleConstants.h 274 Hangul,
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2_V1.h 141 Hangul,
SkOTTable_OS_2_V2.h 142 Hangul,
SkOTTable_OS_2_V3.h 143 Hangul,
SkOTTable_OS_2_V4.h 143 Hangul,
  /external/skia/src/sfnt/
SkOTTable_OS_2_V1.h 141 Hangul,
SkOTTable_OS_2_V2.h 142 Hangul,
SkOTTable_OS_2_V3.h 143 Hangul,
SkOTTable_OS_2_V4.h 143 Hangul,
  /external/chromium_org/v8/test/intl/string/
normalization.js 89 ['\uac00', // ? : Hangul
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/
options.js 75 { scriptCode: 'Hang', scriptName: 'Hangul'},

Completed in 894 milliseconds

1 2