Home | History | Annotate | Download | only in intltest

Lines Matching refs:myCollation

20 : myCollation(0)
23 myCollation = Collator::createInstance(Locale::getJapan(), status);
24 if(!myCollation || U_FAILURE(status)) {
27 delete myCollation;
28 myCollation = NULL;
35 delete myCollation;
108 myCollation->setStrength(Collator::TERTIARY);
111 myCollation->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
112 myCollation->setAttribute(UCOL_CASE_LEVEL, UCOL_ON, status);
114 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
122 myCollation->setStrength(Collator::PRIMARY);
124 doTest(myCollation, testBaseCases[i], testBaseCases[i + 1], Collator::LESS);
131 myCollation->setStrength(Collator::SECONDARY);
133 doTest(myCollation, testPlainDakutenHandakutenCases[i], testPlainDakutenHandakutenCases[i + 1],
144 myCollation->setStrength(Collator::TERTIARY);
145 myCollation->setAttribute(UCOL_CASE_LEVEL, UCOL_ON, status);
147 doTest(myCollation, testSmallLargeCases[i], testSmallLargeCases[i + 1], Collator::LESS);
157 myCollation->setStrength(Collator::QUATERNARY);
158 myCollation->setAttribute(UCOL_CASE_LEVEL, UCOL_ON, status);
160 doTest(myCollation, testKatakanaHiraganaCases[i], testKatakanaHiraganaCases[i + 1],
172 myCollation->setStrength(Collator::QUATERNARY);
173 myCollation->setAttribute(UCOL_CASE_LEVEL, UCOL_ON, status);
175 doTest(myCollation, testChooonKigooCases[i], testChooonKigooCases[i + 1], Collator::LESS);
183 if(myCollation) {