Home
last modified time | relevance | path

Searched refs:mMethod (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
DCompatUtils.java171 private final Method mMethod; field in CompatUtils.ToObjectMethodWrapper
174 mMethod = method; in ToObjectMethodWrapper()
179 return (T) CompatUtils.invoke(receiver, mDefaultValue, mMethod, args); in invoke()
184 private final Method mMethod; field in CompatUtils.ToIntMethodWrapper
187 mMethod = method; in ToIntMethodWrapper()
191 return (int) CompatUtils.invoke(receiver, mDefaultValue, mMethod, args); in invoke()
196 private final Method mMethod; field in CompatUtils.ToFloatMethodWrapper
199 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 …]
/packages/apps/Calendar/src/com/android/calendar/
DCalendarEventModel.java103 private final int mMethod; field in CalendarEventModel.ReminderEntry
134 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()