Lines Matching refs:myCollator
880 UCollator *myCollator = 0; in TestJB581() local
888 myCollator = ucol_open("en_US", &status); in TestJB581()
893 result = ucol_strcoll(myCollator, source, -1, target, -1); in TestJB581()
900 ucol_setStrength(myCollator, UCOL_PRIMARY); in TestJB581()
901 result = ucol_strcoll(myCollator, source, -1, target, -1); in TestJB581()
908 sourceKeyOut = ucol_getSortKey(myCollator, source, -1, sourceKeyArray, 100); in TestJB581()
910 targetKeyOut = ucol_getSortKey(myCollator, target, -1, targetKeyArray, 100); in TestJB581()
916 ucol_close(myCollator); in TestJB581()
921 UCollator *myCollator = 0; in TestJB1401() local
932 myCollator = ucol_open("en_US", &status); in TestJB1401()
937 ucol_setAttribute(myCollator, UCOL_NORMALIZATION_MODE, UCOL_ON, &status); in TestJB1401()
968 doTest(myCollator, X, Y, UCOL_EQUAL); in TestJB1401()
969 doTest(myCollator, X, Z, UCOL_EQUAL); in TestJB1401()
970 doTest(myCollator, Y, Z, UCOL_EQUAL); in TestJB1401()
979 ceiX = ucol_openElements(myCollator, X, -1, &status); in TestJB1401()
980 ceiY = ucol_openElements(myCollator, Y, -1, &status); in TestJB1401()
981 ceiZ = ucol_openElements(myCollator, Z, -1, &status); in TestJB1401()
1008 ucol_close(myCollator); in TestJB1401()