Searched defs:extraValue (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java72 * @param extraValue The extra value of the subtype. This string is free-form, but the API
85 public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue, argument
87 this(nameId, iconId, locale, mode, extraValue, isAuxiliary, false);
98 * @param extraValue The extra value of the subtype. This string is free-form, but the API
114 public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue, argument
116 this(nameId, iconId, locale, mode, extraValue, isAuxiliary,
128 * @param extraValue The extra value of the subtype. This string is free-form, but the API
146 * Arrays.hashCode(new Object[] {locale, mode, extraValue,
149 public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue, argument
155 mSubtypeExtraValue = extraValue !
391 hashCodeInternal(String locale, String mode, String extraValue, boolean isAuxiliary, boolean overridesImplicitlyEnabledSubtype) argument
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSubtype.java52 * @param extraValue The extra value of the subtype
54 public SpellCheckerSubtype(int nameId, String locale, String extraValue) { argument
57 mSubtypeExtraValue = extraValue != null ? extraValue : "";
219 private static int hashCodeInternal(String locale, String extraValue) { argument
220 return Arrays.hashCode(new Object[] {locale, extraValue});

Completed in 88 milliseconds