Home | History | Annotate | Download | only in intltest

Lines Matching refs:compareCodePointOrder

344         test1.compareCodePointOrder(test2)<=0 ||
345 test1.compareCodePointOrder(0, INT32_MAX, test2)<=0 ||
346 test1.compareCodePointOrder(0, INT32_MAX, test2, 0, INT32_MAX)<=0 ||
353 /* test compareCodePointOrder() */
376 if(u[i].compareCodePointOrder(u[i+1])>=0 || u[i].compareCodePointOrder(0, INT32_MAX, u[i+1].getBuffer())>=0) {
377 errln("error: UnicodeString::compareCodePointOrder() fails for string %d and the following one\n", i);
441 if(s.compareCodePointOrder(u, -1)!=0 || s.compareCodePointOrder(0, 999, u, 0, -1)!=0) {
442 errln("error UnicodeString::compareCodePointOrder(..., const UChar *, srcLength=-1, ...) does not work");
1463 if (test1.compareCodePointOrder(test3) != 1 || test3.compareCodePointOrder(test1) != -1) {
1464 errln("compareCodePointOrder() doesn't work with bogus strings");