Home | History | Annotate | Download | only in intltest

Lines Matching refs:upper

1702     uint8_t sortkey[512], lower[512], upper[512];
1792 upperSize = coll->getBound(tests[j].key, -1, UCOL_BOUND_UPPER, 1, upper, 512, status);
1797 if(strcmp((const char *)upper, (const char *)tests[k].key) <= 0) {
1798 errln("Problem with upper! j = %i (%s vs %s)", k, tests[k].original, tests[j].original);
1809 upperSize = ucol_getBound(sortkey, skSize, UCOL_BOUND_UPPER_LONG, 1, upper, 512, &status);
1816 if(strcmp((const char *)upper, (const char *)sortkey) <= 0) {
1817 errln("Problem with upper! i = %i, j = %i (%s vs %s)", i, j, test[i], test[j]);