Searched defs:minutes (Results 1 - 6 of 6) 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.java188 // Initialize the hours and minutes numbers.
192 int[] minutes = {0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55};
200 minutesTexts[i] = String.format("%02d", minutes[i]);
230 public void setTime(int hours, int minutes) { argument
232 setItem(MINUTE_INDEX, minutes);
270 * If the hours are showing, return the current hour. If the minutes are showing, return the
326 * circle (5 on the minutes, 1 or 13 on the hours).
421 * For the currently showing view (either hours or minutes), re-calculate the position for the
428 * selection (i.e. minutes), force the selection to one of the visibly-showing values.
431 * @return The value that was selected, i.e. 0-23 for hours, 0-59 for minutes
[all...]
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java485 public static Condition toTimeCondition(Context context, long time, int minutes, long now, argument
488 if (minutes < 60) {
489 // display as minutes
490 num = minutes;
495 num = Math.round(minutes / 60f);
/frameworks/base/core/java/android/text/style/
H A DTtsSpan.java106 * hours and minutes, specified with {@link #ARG_HOURS} and
305 * Argument used to specify the minutes of a time. The hours should be
309 public static final String ARG_MINUTES = "android.arg.minutes";
1099 public TimeBuilder(int hours, int minutes) { argument
1102 setMinutes(minutes);
1117 * @param minutes The value to be set for minutes. See
1122 public TimeBuilder setMinutes(int minutes) { argument
1123 return setIntArgument(TtsSpan.ARG_MINUTES, minutes);
/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 820 milliseconds