Home | History | Annotate | Download | only in intltest

Lines Matching defs:fmt

52 CalendarLimitTest::test(UDate millis, icu::Calendar* cal, icu::DateFormat* fmt)
60 fmt->format(millis, theDate);
61 UDate dt = fmt->parse(theDate, status);
102 DateFormat *fmt = DateFormat::createDateTimeInstance();
103 if(!fmt || !cal) {
104 dataerrln("can't open cal and/or fmt");
107 fmt->adoptCalendar(cal);
108 ((SimpleDateFormat*) fmt)->applyPattern("HH:mm:ss.SSS Z, EEEE, MMMM d, yyyy G");
119 test(m, cal, fmt);
123 test(m, cal, fmt);
135 test(VERY_EARLY_MILLIS, cal, fmt);
136 //test(previousDouble(VERY_EARLY_MILLIS), cal, fmt);
137 test(VERY_LATE_MILLIS, cal, fmt);
138 //test(nextDouble(VERY_LATE_MILLIS), cal, fmt);
139 delete fmt;