Home | History | Annotate | Download | only in cintltst

Lines Matching refs:myCollator

846     UCollator   *myCollator = 0;
854 myCollator = ucol_open("en_US", &status);
859 result = ucol_strcoll(myCollator, source, -1, target, -1);
866 ucol_setStrength(myCollator, UCOL_PRIMARY);
867 result = ucol_strcoll(myCollator, source, -1, target, -1);
874 sourceKeyOut = ucol_getSortKey(myCollator, source, -1, sourceKeyArray, 100);
875 targetKeyOut = ucol_getSortKey(myCollator, target, -1, targetKeyArray, 100);
881 ucol_close(myCollator);
886 UCollator *myCollator = 0;
897 myCollator = ucol_open("en_US", &status);
902 ucol_setAttribute(myCollator, UCOL_NORMALIZATION_MODE, UCOL_ON, &status);
933 doTest(myCollator, X, Y, UCOL_EQUAL);
934 doTest(myCollator, X, Z, UCOL_EQUAL);
935 doTest(myCollator, Y, Z, UCOL_EQUAL);
944 ceiX = ucol_openElements(myCollator, X, -1, &status);
945 ceiY = ucol_openElements(myCollator, Y, -1, &status);
946 ceiZ = ucol_openElements(myCollator, Z, -1, &status);
973 ucol_close(myCollator);