Lines Matching refs:myCollator
833 UCollator *myCollator = 0; in TestJB581() local
841 myCollator = ucol_open("en_US", &status); in TestJB581()
848 result = ucol_strcoll(myCollator, source, -1, target, -1); in TestJB581()
855 ucol_setStrength(myCollator, UCOL_PRIMARY); in TestJB581()
856 result = ucol_strcoll(myCollator, source, -1, target, -1); in TestJB581()
863 sourceKeyOut = ucol_getSortKey(myCollator, source, -1, sourceKeyArray, 100); in TestJB581()
864 targetKeyOut = ucol_getSortKey(myCollator, target, -1, targetKeyArray, 100); in TestJB581()
870 ucol_close(myCollator); in TestJB581()
875 UCollator *myCollator = 0; in TestJB1401() local
886 myCollator = ucol_open("en_US", &status); in TestJB1401()
895 ucol_setAttribute(myCollator, UCOL_NORMALIZATION_MODE, UCOL_ON, &status); in TestJB1401()
926 doTest(myCollator, X, Y, UCOL_EQUAL); in TestJB1401()
927 doTest(myCollator, X, Z, UCOL_EQUAL); in TestJB1401()
928 doTest(myCollator, Y, Z, UCOL_EQUAL); in TestJB1401()
937 ceiX = ucol_openElements(myCollator, X, -1, &status); in TestJB1401()
938 ceiY = ucol_openElements(myCollator, Y, -1, &status); in TestJB1401()
939 ceiZ = ucol_openElements(myCollator, Z, -1, &status); in TestJB1401()
966 ucol_close(myCollator); in TestJB1401()