Home | History | Annotate | Download | only in calendar

Lines Matching full:minutes

106          * Returns a new ReminderEntry, with the specified minutes and method.
108 * @param minutes Number of minutes before the start of the event that the alert will fire.
111 public static ReminderEntry valueOf(int minutes, int method) {
113 return new ReminderEntry(minutes, method);
117 * Returns a ReminderEntry, with the specified number of minutes and a default alert method.
119 * @param minutes Number of minutes before the start of the event that the alert will fire.
121 public static ReminderEntry valueOf(int minutes) {
122 return valueOf(minutes, Reminders.METHOD_DEFAULT);
128 * @param minutes Number of minutes before the start of the event that the alert will fire.
131 private ReminderEntry(int minutes, int method) {
133 mMinutes = minutes;
171 * Comparison function for a sort ordered primarily descending by minutes,
185 /** Returns the minutes. */