Home | History | Annotate | Download | only in calendar

Lines Matching refs:re

151             ReminderEntry re = (ReminderEntry) obj;
153 if (re.mMinutes != mMinutes) {
160 return re.mMethod == mMethod ||
161 (re.mMethod == Reminders.METHOD_DEFAULT && mMethod == Reminders.METHOD_ALERT) ||
162 (re.mMethod == Reminders.METHOD_ALERT && mMethod == Reminders.METHOD_DEFAULT);
175 public int compareTo(ReminderEntry re) {
176 if (re.mMinutes != mMinutes) {
177 return re.mMinutes - mMinutes;
179 if (re.mMethod != mMethod) {
180 return mMethod - re.mMethod;