• Home
  • Raw
  • Download

Lines Matching refs:myCollation

22 : myCollation(0)  in CollationKanaTest()
25 myCollation = Collator::createInstance(Locale::getJapan(), status); in CollationKanaTest()
26 if(!myCollation || U_FAILURE(status)) { in CollationKanaTest()
29 delete myCollation; in CollationKanaTest()
30 myCollation = NULL; in CollationKanaTest()
37 delete myCollation; in ~CollationKanaTest()
110 myCollation->setStrength(Collator::TERTIARY); in TestTertiary()
113 myCollation->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status); in TestTertiary()
114 myCollation->setAttribute(UCOL_CASE_LEVEL, UCOL_ON, status); in TestTertiary()
116 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); in TestTertiary()
124 myCollation->setStrength(Collator::PRIMARY); in TestBase()
126 doTest(myCollation, testBaseCases[i], testBaseCases[i + 1], Collator::LESS); in TestBase()
133 myCollation->setStrength(Collator::SECONDARY); in TestPlainDakutenHandakuten()
135 … doTest(myCollation, testPlainDakutenHandakutenCases[i], testPlainDakutenHandakutenCases[i + 1], in TestPlainDakutenHandakuten()
146 myCollation->setStrength(Collator::TERTIARY); in TestSmallLarge()
147 myCollation->setAttribute(UCOL_CASE_LEVEL, UCOL_ON, status); in TestSmallLarge()
149 doTest(myCollation, testSmallLargeCases[i], testSmallLargeCases[i + 1], Collator::LESS); in TestSmallLarge()
159 myCollation->setStrength(Collator::QUATERNARY); in TestKatakanaHiragana()
160 myCollation->setAttribute(UCOL_CASE_LEVEL, UCOL_ON, status); in TestKatakanaHiragana()
162 doTest(myCollation, testKatakanaHiraganaCases[i], testKatakanaHiraganaCases[i + 1], in TestKatakanaHiragana()
174 myCollation->setStrength(Collator::QUATERNARY); in TestChooonKigoo()
175 myCollation->setAttribute(UCOL_CASE_LEVEL, UCOL_ON, status); in TestChooonKigoo()
177 doTest(myCollation, testChooonKigooCases[i], testChooonKigooCases[i + 1], Collator::LESS); in TestChooonKigoo()
185 if(myCollation) { in runIndexedTest()