Home | History | Annotate | Download | only in intltest

Lines Matching defs: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
321 int32_t limits[UCAL_FIELD_COUNT][4];
323 limits[j][0] = INT32_MAX;
324 limits[j][1] = INT32_MIN;
325 limits[j][2] = INT32_MAX;
326 limits[j][3] = INT32_MIN;
358 if (limits[j][0] > minActual) {
360 limits[j][0] = minActual;
362 if (limits[j][1] < minActual) {
364 limits[j][1] = minActual;
366 if (limits[j][2] > maxActual) {
368 limits[j][2] = maxActual;
370 if (limits[j][3] < maxActual) {
372 limits[j][3] = maxActual;
430 if (limits[j][0] != rangeLow || limits[j][1] != rangeHigh) {
434 limits[j][0] + ".." + limits[j][1]);
439 if (limits[j][2] != rangeLow || limits[j][3] != rangeHigh) {
443 buf.append((UnicodeString)" maxima actual=" + limits[j][2] + ".." + limits[j][3]);