Home | History | Annotate | Download | only in cintltst

Lines Matching refs:ucol_strcoll

426     UCollationResult result = ucol_strcoll(col,p,u_strlen(p),q,u_strlen(q));
654 return ucol_strcoll(UCA, source, sLen, target, tLen);
2301 /*result = ucol_strcoll(coll, strA, -3, strB, -3);*/
2302 result = ucol_strcoll(coll, strA, 3, strB, 3);
2306 result = ucol_strcoll(coll, strA, -1, strB, -1);
2362 result = ucol_strcoll(coll, strA, 6, strB, 6);
2366 result = ucol_strcoll(coll, strA, -1, strB, -1);
2417 result = ucol_strcoll(coll, strA, 5, strB, 5);
2421 result = ucol_strcoll(coll, strA, -1, strB, -1);
2708 if (ucol_strcoll(coll, testdata2[0], 2, testdata2[1], 2) != UCOL_LESS) {
2714 if (ucol_strcoll(coll, testdata2[1], 2, testdata2[2], 2) != UCOL_LESS) {
3044 result = ucol_strcoll(coll, first, -1, second, -1);
3810 resU16 = ucol_strcoll(coll, U16Source, U16LenS, U16Target, U16LenT);
4276 result = ucol_strcoll(coll, source, -1, target, -1);
4726 res = ucol_strcoll(coll, &a, 1, &null, 1);
5427 /* Use ucol_strcoll() to determine ordering */
5428 strcollresult = ucol_strcoll(ucol, data1, data1Len, data2, data2Len);
5430 log_err("Result from ucol_strcoll() should be UCOL_EQUAL.");