Lines Matching refs:myCollation
39 static UCollator *myCollation; variable
151 myCollation = ucol_open("fr_CA", &status); in TestTertiary()
152 if(U_FAILURE(status) || !myCollation){ in TestTertiary()
157 ucol_setAttribute(myCollation, UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, &status); in TestTertiary()
163 ucol_setStrength(myCollation, UCOL_QUATERNARY); in TestTertiary()
166 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); in TestTertiary()
168 ucol_close(myCollation); in TestTertiary()
176 myCollation = ucol_open("fr_CA", &status); in TestSecondary()
181 ucol_setAttribute(myCollation, UCOL_STRENGTH, UCOL_SECONDARY, &status); in TestSecondary()
196 doTest(myCollation, testAcute[i], testAcute[j], expected ); in TestSecondary()
199 ucol_close(myCollation); in TestSecondary()
206 myCollation = ucol_open("fr_CA", &status); in TestExtra()
212 ucol_setStrength(myCollation, UCOL_TERTIARY); in TestExtra()
217 doTest(myCollation, testBugs[i], testBugs[j], UCOL_LESS); in TestExtra()
220 ucol_close(myCollation); in TestExtra()