Home | History | Annotate | Download | only in intltest

Lines Matching full:limits

115     // This test used to test the algorithmic limits of the dates that
117 // been rewritten completely since then and the prior limits no
357 int32_t limits[UCAL_FIELD_COUNT][4];
359 limits[j][0] = INT32_MAX;
360 limits[j][1] = INT32_MIN;
361 limits[j][2] = INT32_MAX;
362 limits[j][3] = INT32_MIN;
394 if (limits[j][0] > minActual) {
396 limits[j][0] = minActual;
398 if (limits[j][1] < minActual) {
400 limits[j][1] = minActual;
402 if (limits[j][2] > maxActual) {
404 limits[j][2] = maxActual;
406 if (limits[j][3] < maxActual) {
408 limits[j][3] = maxActual;
485 if (limits[j][0] != rangeLow || limits[j][1] != rangeHigh) {
489 buf.append((UnicodeString)" minima actual=" + limits[j][0] + ".." + limits[j][1]);
494 if (limits[j][2] != rangeLow || limits[j][3] != rangeHigh) {
498 buf.append((UnicodeString)" maxima actual=" + limits[j][2] + ".." + limits[j][3]);