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

/dalvik/libcore/xml/src/main/java/javax/xml/datatype/
H A DDuration.java505 * object is based on some other calendar systems.
524 * @param calendar
525 * A calendar object whose value will be modified.
527 * if the calendar parameter is null.
529 public abstract void addTo(Calendar calendar); argument
/dalvik/libcore/luni/src/main/java/java/util/
H A DCalendar.java38 * according to the rules of a specific calendar system.
44 * returns a calendar whose locale is based on system settings and whose time fields
53 * to implement the date-time formatting for a particular language and calendar
101 * <strong>Insufficient information.</strong> The calendar will use default
102 * information to specify the missing fields. This may vary by calendar; for the
103 * Gregorian calendar, the default for a field is the same as that of the start
107 * <strong>Inconsistent information.</strong> If fields conflict, the calendar
109 * determining the day, the calendar will look for one of the following
149 * The date or time format strings are not part of the definition of a calendar,
164 * {@code f} is changed immediately, the calendar'
723 after(Object calendar) argument
742 before(Object calendar) argument
[all...]
H A DFormatter.java1993 Calendar calendar;
1995 calendar = (Calendar) arg;
2005 calendar = Calendar.getInstance(locale);
2006 calendar.setTime(date);
2014 dateTimeUtil.transform(formatToken, calendar, result);
2226 private Calendar calendar; field in class:Formatter.DateTimeUtil
2241 this.calendar = aCalendar;
2376 int day = calendar.get(Calendar.DAY_OF_MONTH);
2381 int day = calendar.get(Calendar.DAY_OF_MONTH);
2386 int month = calendar
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DDateFormat.java50 * of the week, or even the calendar format: lunar vs. solar.
137 * The calendar that this {@code DateFormat} uses to format a number
140 protected Calendar calendar; field in class:DateFormat
305 clone.calendar = (Calendar) calendar.clone();
331 && calendar.getTimeZone().equals(
332 dateFormat.calendar.getTimeZone())
333 && calendar.getFirstDayOfWeek() == dateFormat.calendar
335 && calendar
[all...]

Completed in 75 milliseconds