Home | History | Annotate | Download | only in i18n

Lines Matching refs:FORMAT

184 udat_close(UDateFormat* format)
186 delete (DateFormat*)format;
195 Format *res = ((DateFormat*)fmt)->clone();
206 udat_format( const UDateFormat* format,
227 ((DateFormat*)format)->format(dateToFormat, res, fp);
238 udat_parse( const UDateFormat* format,
257 res = ((DateFormat*)format)->parse(src, pp);
270 udat_parseCalendar(const UDateFormat* format,
285 ((DateFormat*)format)->parse(src, *(Calendar*)calendar, pp);
404 udat_applyPattern( UDateFormat *format,
412 verifyIsSimpleDateFormat(format, &status);
418 ((SimpleDateFormat*)format)->applyLocalizedPattern(pat, status);
420 ((SimpleDateFormat*)format)->applyPattern(pat);
486 res = syms->getMonths(count, DateFormatSymbols::FORMAT, DateFormatSymbols::NARROW);
490 res = syms->getWeekdays(count, DateFormatSymbols::FORMAT, DateFormatSymbols::SHORT);
494 res = syms->getWeekdays(count, DateFormatSymbols::FORMAT, DateFormatSymbols::NARROW);
526 res = syms->getQuarters(count, DateFormatSymbols::FORMAT, DateFormatSymbols::WIDE);
530 res = syms->getQuarters(count, DateFormatSymbols::FORMAT, DateFormatSymbols::ABBREVIATED);
600 syms->getMonths(count, DateFormatSymbols::FORMAT, DateFormatSymbols::NARROW);
604 syms->getWeekdays(count, DateFormatSymbols::FORMAT, DateFormatSymbols::SHORT);
608 syms->getWeekdays(count, DateFormatSymbols::FORMAT, DateFormatSymbols::NARROW);
640 syms->getQuarters(count, DateFormatSymbols::FORMAT, DateFormatSymbols::WIDE);
644 syms->getQuarters(count, DateFormatSymbols::FORMAT, DateFormatSymbols::ABBREVIATED);
861 udat_setSymbols( UDateFormat *format,
868 verifyIsSimpleDateFormat(format, status);
871 DateFormatSymbols *syms = (DateFormatSymbols *)((SimpleDateFormat *)format)->getDateFormatSymbols();
980 return ((Format*)fmt)->getLocaleID(type, *status);
1057 udat_applyPatternRelative(UDateFormat *format,
1064 verifyIsRelativeDateFormat(format, status);
1068 ((RelativeDateFormat*)format)->applyPatterns(datePat, timePat, *status);