Searched refs:calendar (Results 1 - 6 of 6) sorted by relevance

/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/opt/calendar/tests/
H A DAndroid.mk22 LOCAL_STATIC_JAVA_LIBRARIES := calendar-common
/frameworks/opt/calendar/
H A DAndroid.mk18 LOCAL_MODULE := calendar-common
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java612 Component calendar = parseComponent(null, text);
613 if (calendar == null || !Component.VCALENDAR.equals(calendar.getName())) {
616 return calendar;
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java1354 Calendar calendar = Calendar.getInstance();
1355 calendar.setTimeInMillis(System.currentTimeMillis());
1356 calendar.set(Calendar.HOUR, 0);
1357 calendar.set(Calendar.MINUTE, 0);
1358 calendar.set(Calendar.SECOND, 0);
1359 calendar.set(Calendar.MILLISECOND, 0);
1360 calendar.add(Calendar.DAY_OF_MONTH, 1);
1363 set(RTC, calendar.getTimeInMillis(), 0, 0, mDateChangeSender, true, workSource);
/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 199 milliseconds