Searched defs:aLocale (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/javax/xml/datatype/
H A DXMLGregorianCalendar.java158 * {@link #toGregorianCalendar(java.util.TimeZone timezone, java.util.Locale aLocale, XMLGregorianCalendar defaults)},
999 * @param aLocale provide explicit Locale. Use default GregorianCalendar locale if
1010 java.util.Locale aLocale,
1008 toGregorianCalendar( java.util.TimeZone timezone, java.util.Locale aLocale, XMLGregorianCalendar defaults) argument
/libcore/ojluni/src/main/java/java/text/
H A DDateFormat.java467 * @param aLocale the given locale.
471 Locale aLocale)
473 return get(style, 0, 1, aLocale);
503 * @param aLocale the given locale.
507 Locale aLocale)
509 return get(0, style, 2, aLocale);
542 * @param aLocale the given locale.
546 getDateTimeInstance(int dateStyle, int timeStyle, Locale aLocale) argument
548 return get(timeStyle, dateStyle, 3, aLocale);
470 getTimeInstance(int style, Locale aLocale) argument
506 getDateInstance(int style, Locale aLocale) argument
/libcore/ojluni/src/main/java/java/util/
H A DGregorianCalendar.java605 * @param aLocale the given locale.
607 public GregorianCalendar(Locale aLocale) { argument
608 this(TimeZone.getDefaultRef(), aLocale);
617 * @param aLocale the given locale.
619 public GregorianCalendar(TimeZone zone, Locale aLocale) { argument
620 super(zone, aLocale);
H A DCalendar.java946 * @param aLocale the locale for the week data
948 protected Calendar(TimeZone zone, Locale aLocale) argument
954 if (aLocale == null) {
955 aLocale = Locale.getDefault();
962 setWeekCountData(aLocale);
997 * @param aLocale the locale for the week data
1000 public static Calendar getInstance(Locale aLocale) argument
1002 Calendar cal = createCalendar(TimeZone.getDefaultRef(), aLocale);
1013 * @param aLocale the locale for the week data
1017 Locale aLocale)
1016 getInstance(TimeZone zone, Locale aLocale) argument
1022 createCalendar(TimeZone zone, Locale aLocale) argument
[all...]

Completed in 1170 milliseconds