Searched defs:dateStyle (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/text/spi/
H A DDateFormatProvider.java91 * @param dateStyle the given date formatting style. Either one of
102 * @exception IllegalArgumentException if <code>dateStyle</code> or
113 getDateTimeInstance(int dateStyle, int timeStyle, Locale locale); argument
/libcore/ojluni/src/main/java/java/text/
H A DDateFormat.java525 * @param dateStyle the given date formatting style. For example,
531 public final static DateFormat getDateTimeInstance(int dateStyle, argument
534 return get(timeStyle, dateStyle, 3, Locale.getDefault(Locale.Category.FORMAT));
540 * @param dateStyle the given date formatting style.
546 getDateTimeInstance(int dateStyle, int timeStyle, Locale aLocale) argument
548 return get(timeStyle, dateStyle, 3, aLocale);
744 * @param dateStyle a value from 0 to 3 indicating the time format,
750 private static DateFormat get(int timeStyle, int dateStyle, argument
760 if (dateStyle < 0 || dateStyle >
[all...]
H A DSimpleDateFormat.java606 SimpleDateFormat(int timeStyle, int dateStyle, Locale loc) { argument
617 if ((timeStyle >= 0) && (dateStyle >= 0)) {
619 localeData.getDateFormat(dateStyle),
627 else if (dateStyle >= 0) {
628 pattern = localeData.getDateFormat(dateStyle);

Completed in 113 milliseconds