Home | History | Annotate | Download | only in intltest

Lines Matching refs:lower

1778     uint8_t sortkey[512], lower[512], upper[512];
1870 lowerSize = coll->getBound(tests[i].key, -1, UCOL_BOUND_LOWER, 1, lower, 512, status);
1873 if(strcmp((const char *)lower, (const char *)tests[k].key) > 0) {
1874 errln("Problem with lower! j = %i (%s vs %s)", k, tests[k].original, tests[i].original);
1887 lowerSize = ucol_getBound(sortkey, skSize, UCOL_BOUND_LOWER, 1, lower, 512, &status);
1892 if(strcmp((const char *)lower, (const char *)sortkey) > 0) {
1893 errln("Problem with lower! i = %i, j = %i (%s vs %s)", i, j, test[i], test[j]);