Lines Matching refs:myCollator
881 UCollator *myCollator = 0; in TestJB581() local
889 myCollator = ucol_open("en_US", &status); in TestJB581()
894 result = ucol_strcoll(myCollator, source, -1, target, -1); in TestJB581()
901 ucol_setStrength(myCollator, UCOL_PRIMARY); in TestJB581()
902 result = ucol_strcoll(myCollator, source, -1, target, -1); in TestJB581()
909 sourceKeyOut = ucol_getSortKey(myCollator, source, -1, sourceKeyArray, 100); in TestJB581()
911 targetKeyOut = ucol_getSortKey(myCollator, target, -1, targetKeyArray, 100); in TestJB581()
917 ucol_close(myCollator); in TestJB581()
922 UCollator *myCollator = 0; in TestJB1401() local
933 myCollator = ucol_open("en_US", &status); in TestJB1401()
938 ucol_setAttribute(myCollator, UCOL_NORMALIZATION_MODE, UCOL_ON, &status); in TestJB1401()
969 doTest(myCollator, X, Y, UCOL_EQUAL); in TestJB1401()
970 doTest(myCollator, X, Z, UCOL_EQUAL); in TestJB1401()
971 doTest(myCollator, Y, Z, UCOL_EQUAL); in TestJB1401()
980 ceiX = ucol_openElements(myCollator, X, -1, &status); in TestJB1401()
981 ceiY = ucol_openElements(myCollator, Y, -1, &status); in TestJB1401()
982 ceiZ = ucol_openElements(myCollator, Z, -1, &status); in TestJB1401()
1009 ucol_close(myCollator); in TestJB1401()