Home | History | Annotate | Download | only in intltest

Lines Matching full:limits

111     // This test used to test the algorithmic limits of the dates that
113 // been rewritten completely since then and the prior limits no
318 int32_t limits[UCAL_FIELD_COUNT][4];
320 limits[j][0] = INT32_MAX;
321 limits[j][1] = INT32_MIN;
322 limits[j][2] = INT32_MAX;
323 limits[j][3] = INT32_MIN;
354 if (limits[j][0] > minActual) {
356 limits[j][0] = minActual;
358 if (limits[j][1] < minActual) {
360 limits[j][1] = minActual;
362 if (limits[j][2] > maxActual) {
364 limits[j][2] = maxActual;
366 if (limits[j][3] < maxActual) {
368 limits[j][3] = maxActual;
414 if (limits[j][0] != rangeLow || limits[j][1] != rangeHigh) {
418 buf.append((UnicodeString)" minima actual=" + limits[j][0] + ".." + limits[j][1]);
423 if (limits[j][2] != rangeLow || limits[j][3] != rangeHigh) {
427 buf.append((UnicodeString)" maxima actual=" + limits[j][2] + ".." + limits[j][3]);