Home | History | Annotate | Download | only in intltest

Lines Matching full:limits

45     double limits[] = {1,2,3,4,5,6,7};
47 ChoiceFormat* form = new ChoiceFormat(limits, monthNames, 7);
75 ChoiceFormat* formequal=new ChoiceFormat(limits, monthNames, 7);
105 if(gotLimits[ix] != limits[ix]){
106 errln((UnicodeString)"getLimits didn't get the limits correctly. Expected " + limits[ix] + " Got " + gotLimits[ix]);
471 double limits[] = { 0, 1, 2, 3, 4, 5 };
476 ChoiceFormat fmt1(limits, closures, fmts, 6);
509 errln("FAIL: couldn't get limits or closures");
516 if(limits2[i] != limits[i]) {
517 errln("FAIL: limit #%d = %g, should be %g\n", i, limits2[i], limits[i]);
638 static const double limits[] = {0.1e-78, 1e13, 0.1e78};
640 ChoiceFormat fmt(limits, monthNames, UPRV_LENGTHOF(limits));