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

/frameworks/base/tools/layoutlib/bridge/src/android/text/format/
H A DTime_Delegate.java56 private static Calendar timeToCalendar(Time time, Calendar calendar) { argument
57 calendar.set(time.year, time.month, time.monthDay, time.hour, time.minute, time.second);
58 return calendar;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DSimpleMonthAdapter.java52 private Calendar calendar; field in class:SimpleMonthAdapter.CalendarDay
66 public CalendarDay(Calendar calendar) { argument
67 year = calendar.get(Calendar.YEAR);
68 month = calendar.get(Calendar.MONTH);
69 day = calendar.get(Calendar.DAY_OF_MONTH);
97 if (calendar == null) {
98 calendar = Calendar.getInstance();
100 calendar.setTimeInMillis(timeInMillis);
101 month = calendar.get(Calendar.MONTH);
102 year = calendar
[all...]
/frameworks/base/core/java/android/widget/
H A DCalendarView.java57 * This class is a calendar widget for displaying and selecting dates. The range
58 * of dates supported by this calendar is configurable. A user can select a date
59 * by taping on it and can scroll and fling the calendar to a desired date.
635 * Sets the text appearance for the week day abbreviation of the calendar header.
649 * Gets the text appearance for the week day abbreviation of the calendar header.
660 * Sets the text appearance for the calendar dates.
675 * Gets the text appearance for the calendar dates.
976 * Gets a calendar for locale bootstrapped with the value of a given calendar.
978 * @param oldCalendar The old calendar
1252 setMonthDisplayed(Calendar calendar) argument
[all...]

Completed in 209 milliseconds