Lines Matching refs:myCollation
30 : myCollation(0) in CollationFrenchTest()
33 myCollation = Collator::createInstance(Locale::getCanadaFrench(), status); in CollationFrenchTest()
34 if(!myCollation || U_FAILURE(status)) { in CollationFrenchTest()
37 delete myCollation; in CollationFrenchTest()
38 myCollation = NULL; in CollationFrenchTest()
44 delete myCollation; in ~CollationFrenchTest()
144 myCollation->setStrength(Collator::TERTIARY); in TestTertiary()
145 myCollation->setAttribute(UCOL_FRENCH_COLLATION, UCOL_ON, status); in TestTertiary()
146 myCollation->setAttribute(UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, status); in TestTertiary()
154 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); in TestTertiary()
167 myCollation->setStrength(Collator::SECONDARY); in TestSecondary()
183 doTest(myCollation, testAcute[i], testAcute[j], expected ); in TestSecondary()
192 myCollation->setStrength(Collator::TERTIARY); in TestExtra()
197 doTest(myCollation, testBugs[i], testBugs[j], Collator::LESS); in TestExtra()
206 if((!myCollation) && exec) { in runIndexedTest()