Home | History | Annotate | Download | only in cintltst

Lines Matching refs:ucol_strcollUTF8

205     if (ucol_strcollUTF8(coll, srcU8, srcU8Len, tgtU8, tgtU8Len, &err) != expected
2521 if (ucol_strcollUTF8(coll, NULL, 0, NULL, 0, &status) != 0 || U_FAILURE(status)) {
2522 log_err("ERROR : ucol_strcollUTF8 NULL/0 and NULL/0");
2525 ucol_strcollUTF8(coll, NULL, -1, NULL, 0, &status);
2527 log_err("ERROR: ucol_strcollUTF8 NULL/-1 and NULL/0, should return U_ILLEGAL_ARGUMENT_ERROR");
2530 ucol_strcollUTF8(coll, u8asc, u8ascLen, NULL, 10, &status);
2532 log_err("ERROR: ucol_strcollUTF8 u8asc/u8ascLen and NULL/10, should return U_ILLEGAL_ARGUMENT_ERROR");
2536 if (ucol_strcollUTF8(coll, u8asc, -1, NULL, 0, &status) <= 0 || U_FAILURE(status)) {
2537 log_err("ERROR : ucol_strcollUTF8 u8asc/-1 and NULL/0");
2540 if (ucol_strcollUTF8(coll, NULL, 0, u8asc, -1, &status) >= 0 || U_FAILURE(status)) {
2541 log_err("ERROR : ucol_strcollUTF8 NULL/0 and u8asc/-1");
2544 if (ucol_strcollUTF8(coll, u8asc, u8ascLen, NULL, 0, &status) <= 0 || U_FAILURE(status)) {
2545 log_err("ERROR : ucol_strcollUTF8 u8asc/u8ascLen and NULL/0");
2549 if (ucol_strcollUTF8(coll, u8han, -1, NULL, 0, &status) <= 0 || U_FAILURE(status)) {
2550 log_err("ERROR : ucol_strcollUTF8 u8han/-1 and NULL/0");
2553 if (ucol_strcollUTF8(coll, NULL, 0, u8han, -1, &status) >= 0 || U_FAILURE(status)) {
2554 log_err("ERROR : ucol_strcollUTF8 NULL/0 and u8han/-1");
2557 if (ucol_strcollUTF8(coll, NULL, 0, u8han, u8hanLen, &status) >= 0 || U_FAILURE(status)) {
2558 log_err("ERROR : ucol_strcollUTF8 NULL/0 and u8han/u8hanLen");