Searched refs:mMethod (Results 1 – 2 of 2) sorted by relevance
171 private final Method mMethod; field in CompatUtils.ToObjectMethodWrapper174 mMethod = method; in ToObjectMethodWrapper()179 return (T) CompatUtils.invoke(receiver, mDefaultValue, mMethod, args); in invoke()184 private final Method mMethod; field in CompatUtils.ToIntMethodWrapper187 mMethod = method; in ToIntMethodWrapper()191 return (int) CompatUtils.invoke(receiver, mDefaultValue, mMethod, args); in invoke()196 private final Method mMethod; field in CompatUtils.ToFloatMethodWrapper199 mMethod = method; in ToFloatMethodWrapper()203 return (float) CompatUtils.invoke(receiver, mDefaultValue, mMethod, args); in invoke()208 private final Method mMethod; field in CompatUtils.ToBooleanMethodWrapper[all …]
103 private final int mMethod; field in CalendarEventModel.ReminderEntry134 mMethod = method; in ReminderEntry()139 return mMinutes * 10 + mMethod; in hashCode()160 return re.mMethod == mMethod || in equals()161 (re.mMethod == Reminders.METHOD_DEFAULT && mMethod == Reminders.METHOD_ALERT) || in equals()162 (re.mMethod == Reminders.METHOD_ALERT && mMethod == Reminders.METHOD_DEFAULT); in equals()167 return "ReminderEntry min=" + mMinutes + " meth=" + mMethod; in toString()179 if (re.mMethod != mMethod) { in compareTo()180 return mMethod - re.mMethod; in compareTo()192 return mMethod; in getMethod()