Lines Matching refs:Collator
23 myCollation = Collator::createInstance(Locale::getJapan(), status);
56 const Collator::EComparisonResult CollationKanaTest::results[] = {
57 Collator::LESS,
58 Collator::EQUAL, //Collator::LESS, /* Katakanas and Hiraganas are equal on tertiary level(ICU 2.0)*/
59 Collator::LESS,
60 Collator::GREATER, // Collator::LESS, /* Prolonged sound mark sorts BEFORE equivalent vowel (ICU 2.0)*/
61 Collator::LESS,
62 Collator::LESS, //Collator::GREATER /* Prolonged sound mark sorts BEFORE equivalent vowel (ICU 2.0)*//* 6 */
108 myCollation->setStrength(Collator::TERTIARY);
122 myCollation->setStrength(Collator::PRIMARY);
124 doTest(myCollation, testBaseCases[i], testBaseCases[i + 1], Collator::LESS);
131 myCollation->setStrength(Collator::SECONDARY);
134 Collator::LESS);
144 myCollation->setStrength(Collator::TERTIARY);
147 doTest(myCollation, testSmallLargeCases[i], testSmallLargeCases[i + 1], Collator::LESS);
157 myCollation->setStrength(Collator::QUATERNARY);
161 Collator::LESS);
172 myCollation->setStrength(Collator::QUATERNARY);
175 doTest(myCollation, testChooonKigooCases[i], testChooonKigooCases[i + 1], Collator::LESS);
194 dataerrln("Collator couldn't be instantiated!");