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

/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DDuration.java35 public int minutes; field in class:Duration
53 minutes = 0;
105 minutes = n;
134 cal.add(Calendar.MINUTE, sign*minutes);
147 + (60*minutes)
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DDurationTest.java28 int minutes, int seconds) throws DateException {
37 assertEquals("Duration minutes is not equal for " + str, minutes, duration.minutes);
26 verifyDuration(String str, int sign, int weeks, int days, int hours, int minutes, int seconds) argument
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DRadialPickerLayout.java189 // Initialize the hours and minutes numbers.
193 int[] minutes = {0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55};
201 minutesTexts[i] = String.format("%02d", minutes[i]);
231 public void setTime(int hours, int minutes) { argument
233 setItem(MINUTE_INDEX, minutes);
271 * If the hours are showing, return the current hour. If the minutes are showing, return the
327 * circle (5 on the minutes, 1 or 13 on the hours).
422 * For the currently showing view (either hours or minutes), re-calculate the position for the
429 * selection (i.e. minutes), force the selection to one of the visibly-showing values.
432 * @return The value that was selected, i.e. 0-23 for hours, 0-59 for minutes
[all...]
/frameworks/base/core/java/android/provider/
H A DCalendarContract.java74 * the given calendar. Reminders are specified in minutes before the event and
1721 * days and minutes. The instances table is not writable and only provides a
2052 * The minutes prior to the event that the alarm should ring. -1
2057 public static final String MINUTES = "minutes";
2060 * Passing this as a minutes value will use the default reminder
2061 * minutes.
2192 * The number of minutes that this alarm precedes the start time. Column
2196 public static final String MINUTES = "minutes";
2264 long begin, long end, long alarmTime, int minutes) {
2275 values.put(CalendarAlerts.MINUTES, minutes);
2263 insert(ContentResolver cr, long eventId, long begin, long end, long alarmTime, int minutes) argument
[all...]

Completed in 236 milliseconds