Home | History | Annotate | Download | only in intltest

Lines Matching refs:df

240             DateFormat *df = DateFormat::createDateInstance((DateFormat::EStyle)style, loc);
241 if(df == NULL) {
242 errln(UnicodeString("Could not DF::createDateInstance ") + UnicodeString(styleName((DateFormat::EStyle)style)) + " Locale: " + loc.getDisplayName(temp));
244 test(df, loc);
245 delete df;
253 DateFormat *df = DateFormat::createTimeInstance((DateFormat::EStyle)style, loc);
254 if(df == NULL) {
255 errln(UnicodeString("Could not DF::createTimeInstance ") + UnicodeString(styleName((DateFormat::EStyle)style)) + " Locale: " + loc.getDisplayName(temp));
257 test(df, loc, TRUE);
258 delete df;
267 DateFormat *df = DateFormat::createDateTimeInstance((DateFormat::EStyle)dstyle, (DateFormat::EStyle)tstyle, loc);
268 if(df == NULL) {
269 dataerrln(UnicodeString("Could not DF::createDateTimeInstance ") + UnicodeString(styleName((DateFormat::EStyle)dstyle)) + ", tstyle" + UnicodeString(styleName((DateFormat::EStyle)tstyle)) + "Locale: " + loc.getDisplayName(temp));
271 test(df, loc);
272 delete df;