Home | History | Annotate | Download | only in cintltst

Lines Matching refs:myCollator

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