Home | History | Annotate | Download | only in cintltst

Lines Matching refs:myCollator

874     UCollator   *myCollator = 0;
882 myCollator = ucol_open("en_US", &status);
887 result = ucol_strcoll(myCollator, source, -1, target, -1);
894 ucol_setStrength(myCollator, UCOL_PRIMARY);
895 result = ucol_strcoll(myCollator, source, -1, target, -1);
902 sourceKeyOut = ucol_getSortKey(myCollator, source, -1, sourceKeyArray, 100);
903 targetKeyOut = ucol_getSortKey(myCollator, target, -1, targetKeyArray, 100);
909 ucol_close(myCollator);
914 UCollator *myCollator = 0;
925 myCollator = ucol_open("en_US", &status);
930 ucol_setAttribute(myCollator, UCOL_NORMALIZATION_MODE, UCOL_ON, &status);
961 doTest(myCollator, X, Y, UCOL_EQUAL);
962 doTest(myCollator, X, Z, UCOL_EQUAL);
963 doTest(myCollator, Y, Z, UCOL_EQUAL);
972 ceiX = ucol_openElements(myCollator, X, -1, &status);
973 ceiY = ucol_openElements(myCollator, Y, -1, &status);
974 ceiZ = ucol_openElements(myCollator, Z, -1, &status);
1001 ucol_close(myCollator);