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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DResponseData.java201 private Calendar calendar; field in class:DTTZResponseData
205 calendar = cal;
222 if (calendar == null) {
223 calendar = Calendar.getInstance();
226 data[1] = byteToBCD(calendar.get(java.util.Calendar.YEAR) % 100);
229 data[2] = byteToBCD(calendar.get(java.util.Calendar.MONTH) + 1);
232 data[3] = byteToBCD(calendar.get(java.util.Calendar.DATE));
235 data[4] = byteToBCD(calendar.get(java.util.Calendar.HOUR_OF_DAY));
238 data[5] = byteToBCD(calendar.get(java.util.Calendar.MINUTE));
241 data[6] = byteToBCD(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.
977 * Gets a calendar for locale bootstrapped with the value of a given calendar.
979 * @param oldCalendar The old calendar
1250 setMonthDisplayed(Calendar calendar) argument
[all...]

Completed in 80 milliseconds