Lines Matching refs:myCollation

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